Files
ahrommag/resources/views/sitemap/postcategory.blade.php
2025-11-16 12:43:07 +03:30

12 lines
396 B
PHP

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
@if (count($categories) > 0)
@foreach ($categories as $category)
<url>
<loc>{{ url('category/' . $category->slug).'/' }}</loc>
<lastmod>{{ $category->updated_at->setTimezone('Asia/Tehran')->toAtomString() }}</lastmod>
</url>
@endforeach
@endif
</urlset>