@php $user = Auth::user(); $menu = [ [ 'title' => 'Dashboard', 'items' => [ [ 'href' => route('dashboard'), 'icon' => '', 'text' => __('Dashboard'), 'active' => 'dashboard', ], ], ], [ 'title' => 'Menu', 'items' => [ [ 'href' => route('knowledge.index'), 'icon' => '', 'text' => __('Knowladge'), 'active' => 'knowledge.*', ], [ 'href' => route('history.index'), 'icon' => '', 'text' => __('History Chat'), 'active' => 'history.*', ], ], ], ]; // Tambah menu khusus Superadmin if ($user && $user->role === 'Superadmin') { $menu[] = [ 'title' => 'Manajemen', 'items' => [ [ 'href' => route('admin.index'), 'icon' => '', 'text' => __('Admin'), 'active' => 'admin.*', ], ], ]; } @endphp {{-- ========================================================= =============== [ SIDEBAR AREA ] ======================== ========================================================= --}} {{-- SIDEBAR MOBILE (off-canvas) --}}
Logo Newsmaker23 Gwen Stacy
@foreach ($menu as $group)

  • {{ $group['title'] }}
  • @foreach ($group['items'] as $item)
  • {!! $item['icon'] !!} {{ $item['text'] }}
  • @endforeach

@endforeach

  • Settings
  • {{ strtoupper(substr($user?->username ?? 'U', 0, 1)) }}
    {{ $user?->username ?? 'User' }} {{ $user?->role ?? 'User' }}
  • @csrf
{{-- SIDEBAR DESKTOP (SELALU ADA, CUMA BISA COLLAPSE) --}}
Logo Newsmaker23 Gwen Stacy
@foreach ($menu as $group)

  • {{ $group['title'] }}
  • @foreach ($group['items'] as $item)
  • {!! $item['icon'] !!} {{ $item['text'] }}
  • @endforeach

@endforeach

  • Settings
  • {{ strtoupper(substr($user?->username ?? 'U', 0, 1)) }}
    {{ $user?->username ?? 'User' }} {{ $user?->role ?? 'User' }}
  • @csrf
{{-- OVERLAY MOBILE --}}
{{-- ========================================================= =============== [ TOPBAR AREA ] ========================= ========================================================= --}} {{-- TOPBAR: margin-left ikut desktop sidebar (mini/full) --}}
{{-- KIRI: Buttons --}}
{{-- Mobile hamburger --}} {{-- Desktop collapse (mini/full) --}}

@yield('header')