@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())
@endif
@empty
{{ __('No notifications found.') }}
@endforelse
{{ $notifications->links() }}