{{ __('Notification Center') }}

@can('notifications send') {{ __('Compose New') }} @endcan
{{-- أزرار الفلترة لحالة الإشعارات --}}
@forelse($notifications as $notification) @empty @endforelse
# {{ __('Title') }} {{ __('Status') }} {{ __('Date') }} {{ __('Actions') }}
{{ $loop->iteration + ($notifications->currentPage() - 1) * $notifications->perPage() }} {{ $notification->created_at->format('Y-m-d H:i') }}
@if(!$notification->read_at) @else @endif @can('notifications delete') @endcan
{{ __('No notifications found.') }}
{{ $notifications->links() }}
{{-- Notification Modal --}} {{-- Notification Modal removed: now using page navigation for details --}}