@extends('backend.layouts.master') @section('title', 'Logs - ' . $campaign->title) @section('content')
Logs d'envoi : {{ $campaign->title }}
@forelse($logs as $log) @empty @endforelse
# Destinataire Email Sujet Statut Envoyé le Erreur Actions
{{ $log->id }} {{ $log->recipient?->user?->firstname ?? '-' }} {{ $log->recipient?->user?->name ?? '' }} {{ $log->recipient?->email ?? '-' }} {{ \Illuminate\Support\Str::limit($log->subject, 50) }} @if ($log->status === 'sent') Envoyé @else Échec @endif {{ $log->sent_at?->format('d/m/Y H:i') ?? $log->created_at->format('d/m/Y H:i') }} {{ \Illuminate\Support\Str::limit($log->error_message, 60) }} @if ($log->recipient)
@csrf
@endif
Aucun log pour cette campagne.
@endsection