@extends('layouts.superadmin') @section('title','نظام زُهرة — الاجتماعات') @section('content')
{{-- TOP BAR --}} {{-- FILTER CARD --}}
Filters
فلترة الاجتماعات
{{ $range['fromDate'] }} → {{ $range['toDate'] }}
{{-- LIST --}}
@forelse($meetings as $m) @php $z = $m->zuhra ?? []; $riskLevel = $z['risk_level'] ?? ['label'=>'—','badge'=>'bg-white/5 border-white/10 text-white/70','dot'=>'bg-white/30']; @endphp
{{ \Carbon\Carbon::parse($m->meeting_date)->format('Y-m-d H:i') }} @if($m->location) · {{ $m->location }}@endif
{{ $m->title }}
حالة: {{ \App\Services\Zuhra\ZuhraAi::statusLabel($m->status) }} حضور: {{ $z['participants_attended'] ?? 0 }}/{{ $z['participants_total'] ?? 0 }} ({{ $z['attendance_rate'] ?? 0 }}%) {{ ($z['has_report'] ?? false) ? 'محضر موجود' : 'بدون محضر' }} {{ $riskLevel['label'] }} · {{ $z['risk_score'] ?? 0 }}/20 اكتمال: {{ $z['completeness'] ?? 0 }}%
@empty
لا يوجد نتائج.
@endforelse
{{ $meetings->links() }}
@endsection