mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
2.1 KiB
PHTML
51 lines
2.1 KiB
PHTML
1 month ago
|
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
|
||
|
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"
|
||
|
|
||
|
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||
|
|
||
|
@if(\App\Models\Attachment::count() > 0)
|
||
|
|
||
|
<url>
|
||
|
<loc>{{route('client.attachments')}}</loc>
|
||
|
<lastmod>{{\App\Models\Attachment::orderByDesc('updated_at')->first()->updated_at->tz('UTC')->toAtomString()}}</lastmod>
|
||
|
<changefreq>weekly</changefreq>
|
||
|
<priority>2</priority>
|
||
|
</url>
|
||
|
@endif
|
||
|
@foreach(\App\Models\Attachment::where('is_fillable',1)->orderBy('id')->get(['slug','updated_at']) as $item)
|
||
|
|
||
|
<url>
|
||
|
<loc>{{route('client.attachment',$item->slug)}}</loc>
|
||
|
<lastmod>{{$item->updated_at->tz('UTC')->toAtomString()}}</lastmod>
|
||
|
<changefreq>weekly</changefreq>
|
||
|
<priority>3</priority>
|
||
|
</url>
|
||
|
@endforeach
|
||
|
@if(config('app.xlang.active'))
|
||
|
@foreach(\App\Models\XLang::where('is_default',0)->pluck('tag')->toArray() as $lang)
|
||
|
|
||
|
@php(app()->setLocale($lang))
|
||
|
@if(\App\Models\Attachment::count() > 0)
|
||
|
|
||
|
<url>
|
||
|
<loc>{{route('client.attachments')}}/{{$lang}}</loc>
|
||
|
<lastmod>{{\App\Models\Attachment::orderByDesc('updated_at')->first()->updated_at->tz('UTC')->toAtomString()}}</lastmod>
|
||
|
<changefreq>weekly</changefreq>
|
||
|
<priority>2</priority>
|
||
|
</url>
|
||
|
@endif
|
||
|
@foreach(\App\Models\Attachment::where('is_fillable',1)->whereLocale('title',$lang)->orderBy('id')->get(['slug','updated_at','title']) as $item)
|
||
|
|
||
|
<url>
|
||
|
<loc>{{$item->webUrl()}}</loc>
|
||
|
<lastmod>{{$item->updated_at->tz('UTC')->toAtomString()}}</lastmod>
|
||
|
<changefreq>weekly</changefreq>
|
||
|
<priority>3</priority>
|
||
|
</url>
|
||
|
@endforeach
|
||
|
@endforeach
|
||
|
@endif
|
||
|
|
||
|
</urlset>
|