{{ __('Notification Details') }}

{{ $notification->data['type'] }}

{{ $notification->data['message'] ?? 'No Message' }}


**Sent At:** {{ $notification->created_at->format('M d, Y h:i A') }} ({{ $notification->created_at->diffForHumans() }})

**Status:** @if ($notification->read_at) Read at {{ $notification->read_at->format('M d, Y h:i A') }} @else Unread @endif

@if(isset($notification->data['user_id']))

**Related User ID:** {{ $notification->data['user_id'] }}

@endif