@push('title') Notifications @endpush
@if (session('success')) @endif @if (session('info')) @endif @if (session('warning')) @endif @if (session('danger')) @endif
@can('view_notification_management')

Notifications

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