@php $activeTab = $activeTab ?? 'business'; $items = [ ['key' => 'business', 'label' => 'Business Profile', 'description' => 'Name, logo, address', 'route' => route('admin.settings.business')], ['key' => 'booking', 'label' => 'Booking Settings', 'description' => 'Rules and time windows', 'route' => route('admin.settings.booking')], ['key' => 'staff-services', 'label' => 'Staff & Services', 'description' => 'Duration and buffers', 'route' => route('admin.settings.staff-services')], ['key' => 'invoices', 'label' => 'Invoice Settings', 'description' => 'Tax and numbering', 'route' => route('admin.settings.invoices')], ['key' => 'payments', 'label' => 'Payment Settings', 'description' => 'Cash, Stripe, PayPal', 'route' => route('admin.settings.payments')], ['key' => 'notifications', 'label' => 'Notifications', 'description' => 'Customer alerts', 'route' => route('admin.settings.notifications')], ['key' => 'whatsapp', 'label' => 'WhatsApp', 'description' => 'API reminders', 'route' => route('admin.settings.whatsapp')], ['key' => 'email-smtp', 'label' => 'Email SMTP', 'description' => 'Mail delivery', 'route' => route('admin.settings.email-smtp')], ['key' => 'branding', 'label' => 'Branding', 'description' => 'Colors and theme', 'route' => route('admin.settings.branding')], ['key' => 'localization', 'label' => 'Language & Localization', 'description' => 'Locale and formats', 'route' => route('admin.settings.localization')], ['key' => 'languages', 'label' => 'Languages', 'description' => 'Enable, default, RTL', 'route' => route('admin.settings.languages.index')], ['key' => 'translations', 'label' => 'Translations', 'description' => 'Keys and copy', 'route' => route('admin.settings.translations')], ['key' => 'translation-import-export', 'label' => 'Import/Export', 'description' => 'JSON translation files', 'route' => route('admin.settings.translations.import-export')], ['key' => 'security', 'label' => 'Security', 'description' => 'Access protection', 'route' => route('admin.settings.security')], ['key' => 'billing', 'label' => 'Subscription/Billing', 'description' => 'Plan and payments', 'route' => route('admin.settings.billing')], ]; @endphp