@php // Define menu items configuration $menuItems = [ 'admin' => [ [ 'route' => 'eventmie.myevents_index', 'active_routes' => ['eventmie.myevents_index', 'eventmie.myevents_form'], 'icon' => 'far fa-calendar-alt', 'title' => 'eventmie-pro::em.events', 'tooltip' => 'eventmie-pro::em.events' ], ], 'organiser' => [ [ 'route' => 'eventmie.o_dashboard', 'active_routes' => ['eventmie.o_dashboard'], 'icon' => 'fas fa-gauge', 'title' => 'eventmie-pro::em.dashboard', 'tooltip' => 'eventmie-pro::em.dashboard' ], [ 'route' => 'eventmie.myevents_index', 'active_routes' => ['eventmie.myevents_index', 'eventmie.myevents_form'], 'icon' => 'far fa-calendar-alt', 'title' => 'eventmie-pro::em.events', 'tooltip' => 'eventmie-pro::em.events' ], [ 'route' => 'eventmie.obookings_index', 'active_routes' => ['eventmie.obookings_index'], 'icon' => 'fas fa-money-check-alt', 'title' => 'eventmie-pro::em.bookings', 'tooltip' => 'eventmie-pro::em.bookings' ], [ 'route' => 'eventmie.event_earning_index', 'active_routes' => ['eventmie.event_earning_index'], 'icon' => 'fas fa-wallet', 'title' => 'eventmie-pro::em.earnings', 'tooltip' => 'eventmie-pro::em.earnings' ], [ 'route' => 'eventmie.tags_form', 'active_routes' => ['eventmie.tags_form'], 'icon' => 'fas fa-user-tag', 'title' => 'eventmie-pro::em.tags', 'tooltip' => 'eventmie-pro::em.tags' ], [ 'route' => 'eventmie.myvenues.index', 'active_routes' => ['eventmie.myvenues.index'], 'icon' => 'fas fa-map-location', 'title' => 'eventmie-pro::em.venues', 'tooltip' => 'eventmie-pro::em.venues' ], ], 'pos' => [ [ 'route' => 'eventmie.pos.o_dashboard', 'active_routes' => ['eventmie.pos.o_dashboard'], 'icon' => 'fas fa-gauge', 'title' => 'eventmie-pro::em.dashboard', 'tooltip' => 'eventmie-pro::em.dashboard' ], [ 'route' => 'eventmie.pos.index', 'active_routes' => ['eventmie.pos.index'], 'icon' => 'fas fa-money-check-alt', 'title' => 'eventmie-pro::em.bookings', 'tooltip' => 'eventmie-pro::em.bookings' ], ], 'scanner' => [ [ 'route' => 'eventmie.scanner.o_dashboard', 'active_routes' => ['eventmie.scanner.o_dashboard'], 'icon' => 'fas fa-gauge', 'title' => 'eventmie-pro::em.dashboard', 'tooltip' => 'eventmie-pro::em.dashboard' ], [ 'route' => 'eventmie.scanner.index', 'active_routes' => ['eventmie.scanner.index'], 'icon' => 'fas fa-money-check-alt', 'title' => 'eventmie-pro::em.bookings', 'tooltip' => 'eventmie-pro::em.bookings' ], ], ]; // Helper function to check if menu item is active function isMenuItemActive($activeRoutes) { return in_array(Route::currentRouteName(), $activeRoutes); } $role = Auth::user()->role->name; @endphp