@php $hasChildren = $menu->children->isNotEmpty(); $isActive = request()->routeIs($menu->route); @endphp
  • {{-- SEPARATOR --}} @if($menu->type_menu === \App\Enums\JenisMenu::Separator)
    {{-- TITLE --}} @elseif($menu->type_menu === \App\Enums\JenisMenu::Judul)
    {{ strtoupper($menu->title) }}
    @if ($hasChildren) @endif {{-- NORMAL --}} @else {{-- 🔥 MENU TANPA CHILD → LINK --}} @if(!$hasChildren)
    {{ $menu->title }}
    {{-- 🔥 MENU DENGAN CHILD → TOGGLE --}} @else @endif {{-- CHILDREN --}} @if ($hasChildren) @endif @endif