@include('layouts.partials.head', ['title' => 'لوحة الأنظمة']) @php $user = auth()->user(); $today = now(); $systemCount = $systems->count(); $statCards = [ ['value' => 12, 'label' => 'المهام اليوم', 'icon' => 'ki-filled ki-check-square', 'iconColor' => 'text-emerald-500'], ['value' => 28, 'label' => 'المعاملات', 'icon' => 'ki-filled ki-notepad', 'iconColor' => 'text-blue-500'], ['value' => 5, 'label' => 'التنبيهات', 'icon' => 'ki-filled ki-notification-bing', 'iconColor' => 'text-indigo-500'], ]; $quickLinks = [ ['label' => 'كل الأنظمة', 'icon' => 'ki-filled ki-category', 'active' => true], ['label' => 'إدارية ومالية', 'icon' => 'ki-filled ki-briefcase'], ['label' => 'خدمات الجمهور', 'icon' => 'ki-filled ki-people'], ['label' => 'التخطيط والبيانات', 'icon' => 'ki-filled ki-layer'], ['label' => 'المستندات والأرشفة', 'icon' => 'ki-filled ki-folder'], ['label' => 'متابعة وأداء', 'icon' => 'ki-filled ki-chart-line'], ]; $systemDescriptions = [ 'الدخول السريع إلى الأدوات الأساسية والعمليات اليومية.', 'متابعة البيانات والمهام المرتبطة بهذا النظام من مكان واحد.', 'الوصول إلى الخدمات والملفات المرتبطة بالنظام بشكل منظم.', 'إدارة السجلات والإجراءات المرتبطة بالنظام الحالي.', ]; $iconBackgrounds = [ 'bg-emerald-50 text-emerald-600 ring-emerald-100', 'bg-blue-50 text-blue-600 ring-blue-100', 'bg-cyan-50 text-cyan-600 ring-cyan-100', 'bg-indigo-50 text-indigo-600 ring-indigo-100', 'bg-amber-50 text-amber-600 ring-amber-100', 'bg-violet-50 text-violet-600 ring-violet-100', ]; @endphp
{{ app(\App\Services\ApplicationBranding::class)->municipalityName() }}
{{ \Illuminate\Support\Str::substr(trim($user->name), 0, 1) }}

{{ $user->name }}

مدير النظام

@csrf
@foreach($systems as $index => $system) @php $iconPalette = $iconBackgrounds[$index % count($iconBackgrounds)]; $description = $systemDescriptions[$index % count($systemDescriptions)]; @endphp

{{ $system->name_ar }}

{{ $description }}

الدخول إلى النظام نظام {{ $index + 1 }} من {{ $systemCount }}
@endforeach
@include('layouts.partials.scripts')