File: D:/HostingSpaces/SBogers72/glashelder.pro/sitemap.blade.php
<?php echo '<?xml version="1.0" encoding="UTF-8"?>' ?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
@foreach($navigation->main() as $pageEntity)
@if( ! $pageEntity->hasSubmenu())
<url>
<loc>{{ URL::to('/') . $pageEntity->route }}</loc>
<lastmod>{{ \Carbon\Carbon::now()->format('Y-m-d') }}</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
@elseif( $pageEntity->name == 'services')
@foreach($navigation->services() as $subEntity)
<url>
<loc>{{ URL::to('/') . $subEntity->route }}</loc>
<lastmod>{{ \Carbon\Carbon::now()->format('Y-m-d') }}</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
@endforeach
@elseif( $pageEntity->name == 'practice')
@foreach($navigation->practice() as $subEntity)
<url>
<loc>{{ URL::to('/') . $subEntity->route }}</loc>
<lastmod>{{ \Carbon\Carbon::now()->format('Y-m-d') }}</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
@endforeach
@endif
@endforeach
</urlset>