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/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>