index.blade.php 718 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  3. <!-- 首页 -->
  4. <url>
  5. <loc>{{ url('/') }}</loc>
  6. <lastmod>{{ now()->toAtomString() }}</lastmod>
  7. <changefreq>daily</changefreq>
  8. <priority>1.0</priority>
  9. </url>
  10. {{-- <!-- 产品列表 -->--}}
  11. {{-- @foreach ($products as $product)--}}
  12. {{-- <url>--}}
  13. {{-- <loc>{{ route('products.show', $product->id) }}</loc>--}}
  14. {{-- <lastmod>{{ $product->updated_at->toAtomString() }}</lastmod>--}}
  15. {{-- <changefreq>weekly</changefreq>--}}
  16. {{-- <priority>0.8</priority>--}}
  17. {{-- </url>--}}
  18. {{-- @endforeach--}}
  19. </urlset>