@cache('sitemap'. cacheNumber(),43200) @if(\App\Models\Product::count() > 0) {{route('sitemap.products')}} {{\App\Models\Product::orderByDesc('updated_at')->first()->updated_at->tz('UTC')->toAtomString()}} @endif @if(\App\Models\Post::count() > 0) {{route('sitemap.posts')}} {{\App\Models\Post::orderByDesc('updated_at')->first()->updated_at->tz('UTC')->toAtomString()}} @endif @if(\App\Models\Gallery::count() > 0) {{route('sitemap.galleries')}} {{\App\Models\Gallery::orderByDesc('updated_at')->first()->updated_at->tz('UTC')->toAtomString()}} @endif @if(\App\Models\Clip::count() > 0) {{route('sitemap.clips')}} {{\App\Models\Clip::orderByDesc('updated_at')->first()->updated_at->tz('UTC')->toAtomString()}} @endif @if(\App\Models\Attachment::count() > 0) {{route('sitemap.attachments')}} {{\App\Models\Attachment::orderByDesc('updated_at')->first()->updated_at->tz('UTC')->toAtomString()}} @endif @if(\App\Models\Group::count() > 0 || \App\Models\Category::count()) {{route('sitemap.categories')}} @if($latestUpdate) {{ $latestUpdate->tz('UTC')->toAtomString() }} @else {{ now()->tz('UTC')->toAtomString() }} @endif @endif @endcache