15 lines
410 B
PHP
15 lines
410 B
PHP
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||
|
|
@foreach($urls as $url)
|
||
|
|
<url>
|
||
|
|
<loc>{{ $url['loc'] }}</loc>
|
||
|
|
@if(!empty($url['lastmod']))
|
||
|
|
<lastmod>{{ $url['lastmod'] }}</lastmod>
|
||
|
|
@endif
|
||
|
|
@if(!empty($url['priority']))
|
||
|
|
<priority>{{ $url['priority'] }}</priority>
|
||
|
|
@endif
|
||
|
|
</url>
|
||
|
|
@endforeach
|
||
|
|
</urlset>
|