@extends('layouts.customer') @section('title', 'Analytics') @section('page-title', 'Email Analytics') @section('content')
| Publish Date | Sent | Click-Through Rate | Delivered Rate | Unsubscribed Rate | Spam Report Rate | |
|---|---|---|---|---|---|---|
|
{{ $c['name'] }}
|
@php $publishedAt = $c['published_at'] ?? null; @endphp {{ $publishedAt ? \Carbon\Carbon::parse($publishedAt)->format('n/j/Y') : '-' }} | {{ number_format((int) ($c['sent'] ?? 0)) }} | {{ number_format((float) ($c['click_through'] ?? 0), 2) }}% | {{ number_format((float) ($c['delivered_rate'] ?? 0), 2) }}% | {{ number_format((float) ($c['unsubscribe_rate'] ?? 0), 2) }}% | {{ number_format((float) ($c['spam_rate'] ?? 0), 2) }}% |
| No campaigns found in this period. | ||||||