@extends('layouts.app') @section('title', 'Email Management') @section('content')
Total Emails
{{ $emails->total() }}
Sent Today
{{ $emails->where('status', 'sent')->filter(function($email) { return $email->sent_at && $email->sent_at->isToday(); })->count() }}
Invoice Emails
{{ $emails->where('type', 'invoice')->count() }}
Failed
{{ $emails->where('status', 'failed')->count() }}
|
Date
|
To
|
Subject
|
Type
|
Status
|
Actions |
|---|---|---|---|---|---|
| {{ $email->created_at->format('M d, Y H:i') }} | {{ Str::limit($email->to, 25) }} | {{ Str::limit($email->subject, 30) }} | {{ ucfirst($email->type) }} | {{ ucfirst($email->status) }} |
|