123456789101112131415161718192021222324 |
- <?xml version="1.0" encoding="UTF-8"?>
- <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
- <!-- 首页 -->
- <url>
- <loc>{{ url('/') }}</loc>
- <lastmod>{{ now()->toAtomString() }}</lastmod>
- <changefreq>daily</changefreq>
- <priority>1.0</priority>
- </url>
- {{-- <!-- 产品列表 -->--}}
- {{-- @foreach ($products as $product)--}}
- {{-- <url>--}}
- {{-- <loc>{{ route('products.show', $product->id) }}</loc>--}}
- {{-- <lastmod>{{ $product->updated_at->toAtomString() }}</lastmod>--}}
- {{-- <changefreq>weekly</changefreq>--}}
- {{-- <priority>0.8</priority>--}}
- {{-- </url>--}}
- {{-- @endforeach--}}
- </urlset>
|