@extends('layouts.app') @section('title','Campaign Details') @section('page_title','Campaign Details') @section('content')
{{ $campaign->description ?? 'No description' }}
Status: {{ ucfirst($campaign->status) }}
{{ $totalSent }}
{{ $totalOpened }}
{{ $totalClicks }}
{{ $totalFailed }}
{{ $openRate }}%
{{ $clickRate }}%
| To Email | Subject | Status | Clicks | Sent At | Action |
|---|---|---|---|---|---|
| {{ $email->to_email ?? '-' }} | {{ $email->subject ?? '-' }} | @if($email->reminder_type == 'email_failed') Failed @elseif($email->is_opened) Opened @else Sent @endif | {{ $email->clicks->count() }} | {{ $email->sent_at ?? $email->created_at }} | View |
| No emails found for this campaign. | |||||