HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/honger.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>