Total

{{ $stats['total'] ?? 0 }}

Delivered

{{ $stats['delivered'] ?? 0 }}

Failed

{{ $stats['failed'] ?? 0 }}

@if(count($channels) > 0)
@foreach($channels as $channel)

{{ $channel['channel'] }}

{{ $channel['delivered'] }} delivered · {{ $channel['failed'] }} failed

{{ $channel['total'] }}
@endforeach
@else

No delivery data yet.

@endif
@forelse($recentDeliveries as $delivery)

{{ $delivery['channel'] }}

Sent {{ $delivery['created_at'] ?? '—' }}

{{ $delivery['status'] ?? 'pending' }}
@empty
No deliveries yet.
@endforelse