@extends('backend.layouts.master')
@section('title')
Campagne - {{ $campaign->title }}
@endsection
@section('css')
@endsection
@section('body')
@endsection
@section('content')
| Titre |
{{ $campaign->title }} |
| Événement |
{{ $campaign->event?->title ?? '-' }} |
| Template |
{{ $campaign->template->name }} |
| From |
{{ $campaign->from_name }} <{{ $campaign->from_email }}> |
| Statut |
{{ ucfirst($campaign->status) }} |
| Planifiée le |
{{ $campaign->scheduled_at?->format('d/m/Y H:i') ?? '-' }} |
Éditer
la campagne
| # |
Utilisateur |
Email |
Actions |
@forelse($campaign->recipients as $recipient)
| {{ $recipient->id }} |
{{ $recipient->user?->firstname ?? '-' }} |
{{ $recipient->email }} |
|
@empty
| Aucun destinataire ajouté. |
@endforelse
| # |
Destinataire |
Email |
Envoyé le |
Statut / Contexte |
Actions |
@forelse($campaign->logs as $log)
| {{ $log->id }} |
{{ $log->recipient?->user?->firstname ?? '-' }} |
{{ $log->email }} |
{{ $log->sent_at?->format('d/m/Y H:i') ?? '-' }} |
{{ $log->context ?? '-' }} |
Voir
|
@empty
| Aucun email envoyé pour cette
campagne. |
@endforelse
@endsection
@section('scripts')
@endsection