All Notifications
@if($notifications->count()) @endif
@forelse($notifications as $notification)
@php
$data = $notification->data;
$isUnread = is_null($notification->read_at);
@endphp
@empty
{{ $data['title'] ?? 'System Notification' }}
{{ $data['message'] ?? '' }}
{{ $notification->created_at->diffForHumans() }}
No notifications available
@endforelse