@extends('layouts.nursery') @section('title', 'إعدادات الحضانة') @section('content') @php $settingsTabs = [ [ 'key' => 'branding', 'label' => 'الهوية البصرية', 'desc' => 'الشعار واللوجو', 'icon' => 'photo', ], [ 'key' => 'account', 'label' => 'إعدادات الحساب', 'desc' => 'بيانات الحضانة والمدير', 'icon' => 'building', ], [ 'key' => 'plans', 'label' => 'خطط الاشتراك', 'desc' => 'أسعار وضريبة', 'icon' => 'card', ], [ 'key' => 'shifts', 'label' => 'إدارة المناوبات', 'desc' => 'أوقات العمل', 'icon' => 'clock', ], [ 'key' => 'features', 'label' => 'مزايا الحضانة', 'desc' => 'بوابة وواتساب', 'icon' => 'sparkles', ], ]; @endphp

الإعدادات

إعدادات خاصة بحضانتك فقط — {{ $settings->portalDisplayName() }}

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@if($tab === 'account') @include('nursery.settings.partials.account-tab') @elseif($tab === 'branding') @include('nursery.settings.partials.branding-tab') @elseif($tab === 'plans') @include('nursery.settings.partials.plans-tab') @elseif($tab === 'features') @include('nursery.settings.partials.features-tab') @else @include('nursery.settings.partials.shifts-tab') @endif
@endsection