{{-- Brand / Logo --}}
SidakDesa
{{-- Menu --}}
@php $items = [ [ 'label' => 'Dashboard', 'icon' => 'ti ti-home-2', 'href' => route('admin.dashboard'), 'active' => request()->routeIs('admin.dashboard'), ], [ 'label' => 'Pengajuan', 'icon' => 'ti ti-notebook', 'href' => route('admin.pengajuan'), 'active' => request()->routeIs('admin.pengajuan*'), ], [ 'label' => 'Kelola Perangkat', 'icon' => 'ti ti-users', 'href' => route('admin.perangkat'), 'active' => request()->routeIs('admin.perangkat*'), ], [ 'label' => 'Laporan', 'icon' => 'ti ti-clipboard-list', 'href' => route('admin.laporan'), 'active' => request()->routeIs('admin.laporan*'), ], [ 'label' => 'Setting Absen', 'icon' => 'ti ti-settings', 'href' => route('admin.attendance.setting.show'), 'active' => request()->routeIs('admin.attendance.setting.*'), ], // [ // 'label' => 'Berita', // 'icon' => 'ti ti-news', // 'href' => route('admin.berita.index'), // 'active' => request()->routeIs('admin.berita*'), // ], ]; @endphp
    @foreach ($items as $it)
  • {{ $it['label'] }}
  • @endforeach
Logout