@foreach(auth()->user()->unreadnotifications as $notification)
{{ isset($notification->data['name']) ? $notification->data['name'] : 'No name available' }}
{{ isset($notification->data['message']) ? $notification->data['message'] : 'No message available' }}
{{ $notification->created_at->diffForHumans() }}
@endforeach
@foreach(auth()->user()->readnotifications as $notification)
{{ isset($notification->data['name']) ? $notification->data['name'] : 'No name available' }}
{{ isset($notification->data['message']) ? $notification->data['message'] : 'No message available' }}
{{ $notification->created_at->diffForHumans() }}
@endforeach