@if($notifications->count() > 0)
@foreach($notifications as $notification)
@if(isset($notification->data['type']) && $notification->data['type'] == 'exam_reminder')
@elseif(isset($notification->data['type']) && $notification->data['type'] == 'assignment_reminder')
@else
@endif
{{ $notification->data['title'] ?? 'إشعار جديد' }}
{{ $notification->created_at->diffForHumans() }}
{{ $notification->data['message'] ?? '' }}
@if(isset($notification->data['url']))
عرض التفاصيل
@endif
@if(!$notification->read_at)
@endif
@endforeach
{{ $notifications->links() }}
@else
@endif