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/momsecurity.komma.nl/resources/views/templates/sitemap.blade.php
@extends('master')

@section('title', 'Sitemap')
@section('meta_description', '')

@section('content')

    <div class="o-hero__placeholder"></div>
    <div class="o-hero__bottom-shape  u-spacing-mb6">
        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 114.954"><path d="M0,82.135l1,.047c536.287,25.689,719.319,44.831,1320.093,23.75Q1671.387,93.64,1920,18.6V0H0Z" fill="currentColor"/></svg>
    </div>

    <div class="l-block  l-contain">
        @include('components.pageTitle', ['pageTitle' => 'Sitemap'])

        <ul class="c-sitemap">

            @php
                $pages = new \Illuminate\Database\Eloquent\Collection($page->findChildren());
                $pages = $pages->load('translation', 'translation.route');
            @endphp

            {{-- Generate all sitemap loop for find children except home --}}
            @foreach($pages as $child)
                {{--@unless($child->code_name == 'home')--}}
                @include('components.sitemapLoop', ['sitemapItem' => $child])
                {{--@endunless--}}
            @endforeach

        </ul>
    </div>

    @include('organisms.componentables.cta', ['componentAreaName' => 'fake'])

@endsection