@extends('layouts.superadmin') @section('title','نظام زُهرة — لوحة الإدارة') @section('content')
{{-- TOP BAR --}}
{{-- HERO --}}
زُهرة — غرفة القرارات + متابعة التنفيذ • SuperAdmin

لوحة زُهرة للإدارة العليا

هنا كل شيء مرتبط بالاجتماعات الإدارية: محاضر، حضور، مؤشرات، ومراقبة — مع طبقة تحليلات “Zuhra AI” (منطقية وبسيطة).

الفترة: {{ $range['fromDate'] }} → {{ $range['toDate'] }} مخططات (עוגות ותרשמים) + نصائح
{{-- FILTER --}}
فلترة الفترة
تحليل سريع
{{-- FLASH --}} @if(session('success'))
{{ session('success') }}
@endif {{-- STATS --}} @php $scheduled = $statusCounts['scheduled'] ?? 0; $ongoing = $statusCounts['ongoing'] ?? 0; $completed = $statusCounts['completed'] ?? 0; $cancelled = $statusCounts['cancelled'] ?? 0; $attended = $attendanceCounts['attended'] ?? 0; $invited = $attendanceCounts['invited'] ?? 0; $excused = $attendanceCounts['absent_excused'] ?? 0; $unexcused = $attendanceCounts['absent_unexcused'] ?? 0; // ✅ Fix ParseError: جهّز مصفوفات include خارج @include $statusSegments = [ ['label'=>'مكتمل', 'value'=>$completed, 'stroke'=>'stroke-emerald-300'], ['label'=>'مجدول', 'value'=>$scheduled, 'stroke'=>'stroke-rose-300'], ['label'=>'جارٍ', 'value'=>$ongoing, 'stroke'=>'stroke-cyan-300'], ['label'=>'ملغي', 'value'=>$cancelled, 'stroke'=>'stroke-amber-300'], ]; $attTotal = ($attended + $invited + $excused + $unexcused); $attSegments = [ ['label'=>'حضر', 'value'=>$attended, 'stroke'=>'stroke-emerald-300'], ['label'=>'مدعو', 'value'=>$invited, 'stroke'=>'stroke-cyan-300'], ['label'=>'بعذر', 'value'=>$excused, 'stroke'=>'stroke-amber-300'], ['label'=>'بدون عذر', 'value'=>$unexcused, 'stroke'=>'stroke-rose-300'], ]; @endphp
إجمالي الاجتماعات
{{ number_format($totalMeetings) }}
محاضر مكتوبة
{{ number_format($reportsCount) }}
اجتماعات مكتملة
{{ number_format($completed) }}
متوسط المدة (دقيقة)
{{ $avgDuration ?: '—' }}
{{-- CHARTS --}}
Status
توزيع حالات الاجتماعات
עוגة
@include('superadmin.zuhra.partials.donut', [ 'segments' => $statusSegments, 'center' => $totalMeetings, 'label' => 'اجتماع', 'size' => 140 ])
مكتمل: {{ $completed }}
مجدول: {{ $scheduled }}
جارٍ: {{ $ongoing }}
ملغي: {{ $cancelled }}
Attendance
الحضور والغياب
עוגة
@include('superadmin.zuhra.partials.donut', [ 'segments' => $attSegments, 'center' => $attTotal, 'label' => 'مشاركة', 'size' => 140 ])
حضر: {{ $attended }}
مدعو: {{ $invited }}
بعذر: {{ $excused }}
بدون عذر: {{ $unexcused }}
Zuhra AI
نصائح ذكية (منطقية)
AI Tips
@forelse($aiTips as $tip)
{{ $tip }}
@empty
— لا توجد نصائح حالياً
@endforelse
@if(!empty($keywords))
أكثر كلمات متكررة
@foreach($keywords as $k) {{ $k['word'] }} ({{ $k['count'] }}) @endforeach
@endif
{{-- LATEST MEETINGS --}}

آخر الاجتماعات

نظرة سريعة على الأداء + المحاضر + مؤشر الخطر.

عرض الكل
{{-- TOP RISK --}} @if($topRiskMeetings->count()) @endif
@endsection