{{-- resources/views/notifications/log.blade.php --}} @extends('layouts.app') @section('title', 'Notification Log') @section('page_title', 'Notification Log') @section('page_subtitle', 'All sent and queued notifications') @section('content') {{-- Filters --}}
No notifications found
| Channel | Guest / Recipient | Event | Subject / Preview | Status | Sent | |
|---|---|---|---|---|---|---|
| {{ ucfirst($log->channel) }} |
@if($log->guest)
{{ $log->guest->first_name }}
{{ $log->guest->last_name }}
@endif
{{ $log->recipient }}
|
{{ ucfirst(str_replace('_', ' ', $log->event)) }} | @if($log->subject) @endif |
{{ ucfirst($log->status) }}
@if($log->status === 'failed' && $log->error)
@endif
@if($log->attempts > 1)
{{ $log->attempts }} attempts
@endif
|
{{ $log->created_at->format('d M Y') }} {{ $log->created_at->format('H:i') }} |
{{-- Preview --}}
{{-- Retry --}}
@if($log->status === 'failed')
@endif
|