{{ __('Notifications') }}

@forelse ($notifications as $notification)

{{ $notification->data['title'] ?? 'Notification' }}

{{ $notification->data['message'] ?? '' }}

{{ $notification->created_at->diffForHumans() }}

{{ __('View Details') }}
{{-- HAPA NDIYO MABADILIKO YA MARK AS READ BUTTON --}} @if($notification->unread())
@csrf @method('PATCH') {{-- Tumia PATCH kwa ajili ya update --}}
@endif
@empty

{{ __('No notifications found.') }}

@endforelse
{{ $notifications->links() }}