No notifications sent yet
@foreach($recentLogs as $log)
@php
$cc = $channelColors[$log->channel] ?? $channelColors['email'];
$sc = [
'sent' => ['color'=>'var(--success)','icon'=>'bi-check-circle-fill'],
'failed' => ['color'=>'var(--danger)', 'icon'=>'bi-x-circle-fill'],
'pending' => ['color'=>'var(--warning)', 'icon'=>'bi-hourglass-split'],
'queued' => ['color'=>'var(--info)', 'icon'=>'bi-clock'],
][$log->status] ?? ['color'=>'var(--muted)','icon'=>'bi-dash-circle'];
@endphp
{{ $log->guest?->first_name }}
{{ $log->guest?->last_name ?? $log->recipient }}
{{ ucfirst(str_replace('_', ' ', $log->event)) }}
{{ $log->created_at->diffForHumans() }}
@endforeach