File: D:/HostingSpaces/SBogers10/komma.pro/resources/views/site/sitemap/index.blade.php
<?php echo '<?xml version="1.0" encoding="UTF-8"?>'; ?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{{-- Pages --}}
@foreach ($pageRoutes as $pageRoute)
<url>
<loc>{{ URL::to('/') }}/{{ $pageRoute->route }}</loc>
<lastmod>{{ $pageRoute->node->updated_at->tz('CET')->toAtomString() }}</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
</url>
@endforeach
{{-- Service index --}}
<url>
<loc>{{ URL::to('/') }}/diensten</loc>
<lastmod>2017-10-13T21:16:39+01:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
</url>
{{-- Services --}}
@foreach ($services as $service)
@continue(!isset($service->translation))
<url>
<loc>{{ URL::to('/') }}/diensten/{{ $service->translation->slug }}</loc>
<lastmod>{{ $service->updated_at->tz('CET')->toAtomString() }}</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
</url>
@endforeach
{{-- Case index --}}
<url>
<loc>{{ URL::to('/') }}/cases</loc>
<lastmod>2017-10-13T21:16:39+01:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
</url>
{{-- Cases --}}
@foreach ($cases as $case)
<url>
<loc>{{ URL::to('/') }}/cases/{{ $case->translation->slug }}</loc>
<lastmod>{{ $case->updated_at->tz('CET')->toAtomString() }}</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
</url>
@endforeach
</urlset>