@extends('layouts.superadmin') @section('title', 'متابعة الإشعارات الإدارية') @section('page-title', '📨 متابعة الإشعارات الإدارية') @section('content')
{{-- هيدر علوي ملحمي --}}
لوحة متابعة قراءة الإشعارات الإدارية

الإشعارات الإدارية المرسلة

من هنا يمكنك مراقبة مدى التزام الأعضاء بقراءة الإشعارات الإدارية، معرفة نسبة القراءة لكل إشعار، ومعرفة الإشعارات التي تحتاج إلى تذكير إضافي.

{{-- بحث + لمحة سريعة --}}
@php $totalAll = $notifications->total(); $totalRead = $notifications->sum('read_count'); $totalUnread= $notifications->sum('unread_count'); @endphp

إجمالي الإشعارات

{{ $totalAll }}

إجمالي المقروء

{{ $totalRead }}

إجمالي غير المقروء

{{ $totalUnread }}

{{-- بانيلات الإشعارات --}}
@if($notifications->isEmpty())
لا توجد إشعارات إدارية مسجلة بعد.
@else
@foreach($notifications as $notification) @php $total = $notification->recipients_count ?? 0; $read = $notification->read_count ?? 0; $unread = $notification->unread_count ?? 0; $percent = $total > 0 ? round(($read / $total) * 100) : 0; @endphp
{{-- عنوان الإشعار + وصف قصير --}}
@if(str_contains($notification->title, '[تذكير]')) تذكير @endif

{{ str_replace('[تذكير] ', '', $notification->title) }}

{{ $notification->content }}

{{ $notification->created_at?->diffForHumans() }} أُرسل {{ $notification->created_at?->format('Y-m-d H:i') }}
{{-- بانيل الإحصائيات + زر التفاصيل --}}

المستلمين

{{ $total }}

قرؤوا

{{ $read }}

لم يقرأوا

{{ $unread }}

نسبة القراءة {{ $percent }}%
تفاصيل الإشعار
@endforeach
{{ $notifications->onEachSide(1)->links() }}
@endif
@endsection