@extends('frontend.layouts.app') @section('title', 'Site Map') @section('content') {{-- Hero Section --}} @include('frontend.partials.hero', [ 'mainHeading' => __('pages.site_map'), 'subHeading' => __('pages.site_map_description'), 'breadcrumb1' => [ 'name' => __('route.home'), 'route' => route('home'), ], 'breadcrumb2' => [ 'name' => __('route.site_map'), 'route' => route('site-map'), 'class' => 'text-gray-400', ], 'breadcrumb3' => null, 'breadcrumb4' => null, ]) {{-- Site Map Section --}}
@foreach ($menus->where('parent_id', null) as $parent) @php $hasChildren = $menus->where('parent_id', $parent->id)->count() > 0; @endphp @if (!$hasChildren) @endif @endforeach
@foreach ($menus->where('parent_id', null) as $parent) @php $hasChildren = $menus->where('parent_id', $parent->id)->count() > 0; @endphp @if ($hasChildren)
{{-- CHILDREN --}}
@endif @endforeach
@endsection