{{-- Header --}}

{{ __('Notification Details') }}

{{-- Content --}}
{{-- Title Section --}}

{{ data_get($notification->data, 'title') ?: data_get($notification->data, 'body') ?: data_get($notification->data, 'message') ?: __('No Title') }}

{{ $notification->created_at->translatedFormat('Y-m-d H:i') }} @if($notification->read_at) {{ __('Read') }} @endif
{{-- Body Section --}}
@php $body = data_get($notification->data, 'body') ?? data_get($notification->data, 'message') ?? __('No Message'); @endphp {!! nl2br(e($body)) !!}
@if(data_get($notification->data, 'meta.attachment_url')) @endif {{-- Footer / Actions --}}
@if($linkUrl) {{ __('Open Related Page') }} @endif
@can('delete', $notification) @endcan