@extends('frontend.layouts.app') @section('title', 'Sitemap Title') @section('meta', 'Sitemap Meta Description') @section('content') Site Map Home > Site Map Explore all sections of our website at a glance Site Map {{ __('contact-us.contact_form_description') }} Home Page @foreach ($menus->where('parent_id', null) as $parent) @php $hasChildren = $menus->where('parent_id', $parent->id)->count() > 0; @endphp @if (!$hasChildren) {{ $parent->name_en }} @endif @endforeach @foreach ($menus->where('parent_id', null) as $parent) @php $hasChildren = $menus->where('parent_id', $parent->id)->count() > 0; @endphp @if ($hasChildren) {{ $parent->name_en }} ➤ {{-- CHILDREN --}} @foreach ($menus->where('parent_id', $parent->id) as $child) • {{ $child->name_en }} {{-- GRANDCHILDREN --}} @if ($menus->where('parent_id', $child->id)->count() > 0) @foreach ($menus->where('parent_id', $child->id) as $grandchild) → {{ $grandchild->name_en }} @endforeach @endif @endforeach @endif @endforeach @endsection @push('scripts') @endpush
>
Site Map
Explore all sections of our website at a glance
{{ __('contact-us.contact_form_description') }}