@forelse (mainMenu() as $menu) @php $has_child = !empty($menu['child']); $is_home = $menu['link'] == '/'; @endphp @if ($is_home && $setting?->show_all_homepage == 1)
  • {{ __('Home') }} @php $is_homepage = url()->current() == url('/'); @endphp
      @foreach (App\Enums\ThemeList::themes() as $theme)
    • {{ $theme?->title }}
    • @endforeach
  • @else
  • {{ $menu['label'] }} @if ($has_child) @endif @if ($has_child)
      @foreach ($menu['child'] as $child) @endforeach
    @endif
  • @endif @empty
  • {{ __('Home') }} {{ __('Home') }}
  • @endforelse