@extends('layouts.admin') @section('title', 'Report — ' . $campaign->name) @push('styles') @endpush @section('admin') @php $pct = fn($v) => number_format($v * 100, 2) . '%'; $pctShort = fn($v) => number_format($v * 100, 1) . '%'; // Industry benchmark hints $openBench = 0.25; $clickBench = 0.03; $openColor = $stats['open_rate'] >= $openBench ? '#4ade80' : ($stats['open_rate'] >= $openBench * 0.6 ? '#fcd34d' : '#f87171'); $clickColor = $stats['click_rate'] >= $clickBench ? '#4ade80' : ($stats['click_rate'] >= $clickBench * 0.6 ? '#fcd34d' : '#f87171'); $bounceOk = $stats['bounce_rate'] <= 0.02; $complaintOk = $stats['complaint_rate'] <= 0.003; // For SVG donut rings (circumference = 2πr at r=32 → ≈201) $circ = 201.06; $openDash = round(min($stats['open_rate'] / max(0.001, $openBench * 1.5), 1) * $circ, 2); $clickDash = round(min($stats['click_rate'] / max(0.001, $clickBench * 1.5), 1) * $circ, 2); @endphp
{{ $campaign->subject }}
@if($campaign->sent_at)Sent {{ $campaign->sent_at->format('M j, Y') }}
@endifAuto-paused
Campaign exceeded the 0.3% complaint-rate threshold and was automatically paused.
Opens and clicks in the first 48 h after sending.
@if(empty($hourly))No engagement events recorded yet.
Ranked by total clicks.
@if($topLinks->isEmpty())No link clicks recorded yet.