{{ __('Notification Details') }}

{{ __('Back to Notifications') }}
@if (session('success')) @endif

{{ __('Notification Information') }}

{{ __('Type') }}

@php $type = class_basename($notification->type); $type = str_replace('Notification', '', $type); @endphp {{ $type }}

{{ __('Status') }}

{{ $notification->read_at ? 'Read' : 'Unread' }}

{{ __('Created At') }}

{{ \Carbon\Carbon::parse($notification->created_at)->format('M d, Y H:i:s') }}

@if ($notification->read_at)

{{ __('Read At') }}

{{ \Carbon\Carbon::parse($notification->read_at)->format('M d, Y H:i:s') }}

@endif

{{ __('User Information') }}

{{ __('Name') }}

{{ $notification->user_name }}

{{ __('Email') }}

{{ $notification->user_email }}

{{ __('Notification Content') }}

@if (isset($notification->data->title))

{{ __('Title') }}

{{ $notification->data->title }}

@endif @if (isset($notification->data->message))

{{ __('Message') }}

{{ $notification->data->message }}

@endif

{{ __('All Notification Data') }}

{{ json_encode($notification->data, JSON_PRETTY_PRINT) }}
@if (!$notification->read_at)
@csrf @method('PUT')
@endif
@csrf @method('DELETE')