@php use Illuminate\Support\Facades\Route; function activeNav($route) { $current = Route::currentRouteName(); return str_starts_with($current, $route) ? 'border-l-4 border-blue-600 bg-blue-50 dark:bg-blue-900 text-blue-700 dark:text-white font-semibold shadow-sm' : 'border-l-4 border-transparent hover:border-blue-400 hover:bg-blue-100 dark:hover:bg-gray-800 dark:hover:border-blue-600'; } function isGroupActive($menus) { $current = Route::currentRouteName(); foreach ($menus as $menu) { if (!empty($menu['route']) && str_starts_with($current, $menu['route'])) { return true; } } return false; } $user = auth()->user(); $profileSlug = $user?->profile?->slug ?? null; $sectionIcons = [ 'Katalog' => '🛒', 'Transaksi' => '💳', 'Farmasi Klinik' => '🏥', 'Konten' => '📰', 'Profil' => '👤', ]; $menuGroups = [ 'Katalog' => [ ['label' => 'Katalog Produk', 'icon' => 'fas fa-store', 'route' => 'apoteker.catalog.index'], ], 'Transaksi' => [ ['label' => 'Transaksi Saya', 'icon' => 'fas fa-money-check', 'route' => 'apoteker.transactions.index'], ], 'Konten' => [ ['label' => 'Tulis Berita', 'icon' => 'fas fa-pen-nib', 'route' => 'apoteker.news.create'], ['label' => 'Berita Saya', 'icon' => 'fas fa-newspaper', 'route' => 'apoteker.news.index'], ], 'Farmasi Klinik' => [ ['label' => 'Skrining Resep', 'icon' => 'fas fa-notes-medical', 'route' => 'apoteker.skrining-resep.index'], ['label' => 'Konseling Pasien', 'icon' => 'fas fa-user-md', 'route' => 'apoteker.konseling.index'], ['label' => 'PIO', 'icon' => 'fas fa-book-medical', 'route' => 'apoteker.pio.index'], ['label' => 'Home Pharmacy Care', 'icon' => 'fas fa-home', 'route' => 'apoteker.home-pharmacy.index'], ['label' => 'Efek Samping Obat', 'icon' => 'fas fa-exclamation-circle', 'route' => 'apoteker.monitorings.index'], ['label' => 'SOAP Pasien', 'icon' => 'fas fa-user-md', 'route' => 'apoteker.patients.index'], ['label' => 'Analisis SOAP', 'icon' => 'fas fa-microscope', 'route' => 'apoteker.patients.statistic'], ], 'Profil' => [ ['label' => 'Edit Profil Profesional', 'icon' => 'fas fa-id-badge', 'route' => 'profile.edit'], ['label' => 'Lihat Profil Publik', 'icon' => 'fas fa-globe', 'url' => $profileSlug ? route('profile.public', $profileSlug) : '#', 'disabled' => !$profileSlug], ], ]; @endphp