@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