@push('title') Notifications @endpush
Notifications
@if($notifications->isEmpty())
Title
Message
Sender
Date
Action
@else
@foreach ($notifications as $notification)
No notifications found
@endforeach
@endif
{{ $notification->data['title'] }}
{{ $notification->data['message'] }}
{{ isset($notification->data['sender']) ? $notification->data['sender']['name'] : 'N/A' }}
{{ $notification->created_at->diffForHumans() }}
@if (!$notification->read_at)
@endif
Send System Notifications Manually