@extends('layouts.app') @section('content')

إشعاراتي

{{-- ✅ زر لتمييز كل الإشعارات كمقروءة --}} @if(auth()->user()->unreadNotifications->count() > 0)
@csrf
@endif {{-- ✅ زر لحذف كل الإشعارات --}} @if(auth()->user()->notifications->count() > 0) @endif
{{-- ✅ روابط الترقيم --}}
{{ $notifications->links() }}
{{-- ✅ نافذة modal مخصصة للحذف --}}

تأكيد الحذف

هل أنت متأكد أنك تريد حذف هذا الإشعار؟ لا يمكن التراجع عن هذا الإجراء.

@csrf @method('DELETE')
@push('scripts') @endpush @endsection