This commit is contained in:
12
resources/views/seo/sitemap.blade.php
Normal file
12
resources/views/seo/sitemap.blade.php
Normal file
@@ -0,0 +1,12 @@
|
||||
{!! '<?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>
|
||||
<lastmod>{{ $url['lastmod'] }}</lastmod>
|
||||
<changefreq>{{ $url['changefreq'] }}</changefreq>
|
||||
<priority>{{ $url['priority'] }}</priority>
|
||||
</url>
|
||||
@endforeach
|
||||
</urlset>
|
||||
|
||||
Reference in New Issue
Block a user