@extends('backend.layouts.master') @section('title', 'Log #' . $log->id) @section('content')
Log Email #{{ $log->id }}

Informations

@if ($log->error_message) @endif
ID {{ $log->id }}
Destinataire {{ $log->recipient?->user?->firstname ?? '-' }} {{ $log->recipient?->user?->name ?? '' }}
Email {{ $log->recipient?->email ?? '-' }}
Sujet {{ $log->subject }}
Statut @if ($log->status === 'sent') Envoyé @else Échec @endif
Envoyé le {{ $log->sent_at?->format('d/m/Y H:i') ?? $log->created_at->format('d/m/Y H:i') }}
Erreur {{ $log->error_message }}
@if ($log->recipient)
@csrf
@endif

Contenu de l'email

@endsection @section('scripts') @endsection