9 lines
240 B
PHP
9 lines
240 B
PHP
<sitemap>
|
|
@if (!empty($tag->url))
|
|
<loc>{{ url($tag->url) }}</loc>
|
|
@endif
|
|
@if (!empty($tag->lastModificationDate))
|
|
<lastmod>{{ $tag->lastModificationDate->format(DateTime::ATOM) }}</lastmod>
|
|
@endif
|
|
</sitemap>
|