@extends('frontend.layouts.app') @section('title', 'Sitemap Title') @section('meta', 'Sitemap Meta Description') @section('content')
Banner Image

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)
{{-- CHILDREN --}}
    @foreach ($menus->where('parent_id', $parent->id) as $child)
  • • {{ $child->name_en }} {{-- GRANDCHILDREN --}} @if ($menus->where('parent_id', $child->id)->count() > 0) @endif
  • @endforeach
@endif @endforeach
@endsection @push('scripts') @endpush