您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
xshop/resources/views/sitemap/main.blade.php

16 行
757 B
PHTML

@php('<\?xml version="1.0" encoding="UTF-8"\?>')
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>{{route('sitemap.products')}}</loc>
<lastmod>{{ \App\Models\Product::orderBy('updated_at','desc')->first()->updated_at->tz('UTC')->toAtomString() }}</lastmod>
</sitemap>
<sitemap>
<loc>{{route('sitemap.cats')}}</loc>
<lastmod>{{ \App\Models\Cat::orderBy('updated_at','desc')->first()->updated_at->tz('UTC')->toAtomString() }}</lastmod>
</sitemap>
<sitemap>
<loc>{{route('sitemap.posts')}}</loc>
<lastmod>{{ \Xmen\StarterKit\Models\Post::orderBy('updated_at','desc')->first()->updated_at->tz('UTC')->toAtomString() }}</lastmod>
</sitemap>
</sitemapindex>