@php $navigation = [ ['route'=>'dashboard','icon'=>'⌂','label'=>'لوحة التحكم'], ['route'=>'monthly.index','icon'=>'▦','label'=>'التحصيل الشهري'], ['route'=>'apartments.index','icon'=>'▤','label'=>'الشقق'], ['route'=>'occupancies.index','icon'=>'♙','label'=>'المستأجرون والعقود'], ]; $secondaryNavigation = [ ['route'=>'reports','icon'=>'◫','label'=>'التقارير'], ['route'=>'notifications','icon'=>'◉','label'=>'التنبيهات'], ['route'=>'import.index','icon'=>'⇧','label'=>'استيراد Excel'], ['route'=>'settings.edit','icon'=>'⚙','label'=>'الإعدادات'], ]; $navBuildings = \App\Models\Building::orderBy('id')->get(); $activeChargeBuildingId = isset($building) ? $building->id : (request()->integer('building_id') ?: optional($navBuildings->first())->id); @endphp
☰
{{ now()->translatedFormat('d F Y') }}
◉
@if(session('ok'))
✓
{{ session('ok') }}
@endif @if($errors->any())
!
{{ implode('، ', $errors->all()) }}
@endif @yield('content')
@yield('scripts')