@props(['active' => 'dashboard']) @php $items = [ ['key' => 'dashboard', 'label' => 'Dashboard', 'icon' => 'layout-dashboard', 'route' => route('admin.dashboard')], ['key' => 'appointments', 'label' => 'Appointments', 'icon' => 'briefcase', 'route' => route('admin.appointments.index')], ['key' => 'calendar', 'label' => 'Calendar', 'icon' => 'calendar-days', 'route' => route('admin.appointments.calendar')], ['key' => 'customers', 'label' => 'Customers', 'icon' => 'users', 'route' => route('admin.customers.index')], ['key' => 'services', 'label' => 'Services', 'icon' => 'sparkles', 'route' => route('admin.services.index')], ['key' => 'staff', 'label' => 'Staff', 'icon' => 'user-round-cog', 'route' => route('admin.staff.index')], ['key' => 'invoices', 'label' => 'Invoices', 'icon' => 'file-text', 'route' => route('admin.invoices.index')], ['key' => 'reminders', 'label' => 'Reminders', 'icon' => 'bell', 'route' => route('admin.reminders.index')], ['key' => 'reports', 'label' => 'Reports', 'icon' => 'chart-column', 'route' => route('admin.reports.index')], ['key' => 'subscription', 'label' => 'Subscription', 'icon' => 'credit-card', 'route' => route('admin.subscription.current')], ['key' => 'settings', 'label' => 'Settings', 'icon' => 'settings', 'route' => route('admin.settings.business')], ]; @endphp