Your Notifications

@csrf
@if ($notifications->isEmpty())

No notifications yet

You'll see notifications here when you have new activity.

@else
@foreach ($notifications as $notification)
{{ $notification->data['message'] }}
{{ $notification->created_at->diffForHumans() }}
@if (!$notification->read_at) @endif View
@endforeach
@endif