@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; } $sectionIcons = [ 'Katalog' => '🛒', 'Transaksi' => '💳', 'Farmasi Klinik' => '🏥', 'Konten' => '📰', 'Produktivitas' => '🚀', ]; $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'], ], // 'Produktivitas' => [ // ['label' => 'Statistik Saya', 'icon' => 'fas fa-chart-line', 'route' => 'apoteker.statistik.index'], // ['label' => 'Riwayat Chat AI', 'icon' => 'fas fa-robot', 'route' => 'apoteker.chat-logs.index'], // ], ]; @endphp