{{ __('notification.page_notification_log') }} {{-- Filters --}}
{{ __('notification.filter_reset') }}
@forelse ($logs as $log) @empty @endforelse
{{ __('notification.col_date') }} {{ __('notification.col_customer') }} {{ __('notification.col_recipient') }} {{ __('notification.col_type') }} {{ __('notification.col_status') }} {{ __('notification.col_error') }}
{{ $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 ?? '—' }}
{{ __('notification.empty_log') }}
{{ $logs->links() }}