📧 Email Management

Total Emails

{{ $stats['total'] ?? 0 }}

Sent

{{ $stats['sent'] ?? 0 }}

Drafts

{{ $stats['draft'] ?? 0 }}

Scheduled

{{ $stats['scheduled'] ?? 0 }}

Recent Emails

@if($emails->count() > 0)
@foreach($emails as $email) @endforeach
Subject Recipients Status Date Actions
{{ $email->subject }}
From: {{ $email->sender_name }}
{{ count($email->recipients ?? []) }} recipients
@php $statusColors = [ 'sent' => 'bg-green-100 text-green-800', 'draft' => 'bg-yellow-100 text-yellow-800', 'scheduled' => 'bg-blue-100 text-blue-800', 'failed' => 'bg-red-100 text-red-800' ]; @endphp {{ ucfirst($email->status) }} {{ $email->created_at->format('M d, Y H:i') }}
View @if($email->status === 'draft') Edit @endif
{{ $emails->links() }}
@else

No Emails Found

Start by composing your first email.

Compose Email
@endif