{{ __('Type') }} {{ $record->type_label }} {{ __('Status') }} {{ ucfirst($record->status) }} {{ __('Date') }}

{{ $record->created_at->format('M d, Y H:i:s') }}

{{ __('Recipients') }} @if(count($record->recipients) > 0)
@foreach($record->recipients as $recipient) {{ $recipient }} @endforeach
@else

{{ __('No recipients') }}

@endif
{{ __('Message') }}

{{ $record->message }}

@if($record->context && count($record->context) > 0) {{ __('Details') }}
@foreach($record->context as $key => $value)
{{ $key }}
{{ $value }}
@endforeach
@endif @if($record->error) {{ __('Error') }}

{{ $record->error }}

@endif