| {{ $log->created_at->setTimezone(config('app.display_timezone'))->format('d.m.Y H:i') }} |
{{ $log->customer_name ?? '—' }} |
{{ $log->recipient ?? '—' }} |
{{ __('notification.type_' . $log->type, [], null) !== 'notification.type_' . $log->type ? __('notification.type_' . $log->type) : $log->type }} |
@if ($log->status === 'sent')
{{ __('notification.status_sent') }}
@elseif ($log->status === 'failed')
{{ __('notification.status_failed') }}
@else
{{ __('notification.status_skipped') }}
@endif
|
{{ $log->error_message ?? '—' }} |
@empty