{{-- resources/views/email-bulk/index.blade.php --}} @extends('layout.mainlayout') @section('content')
{{ '{' }}{name}{{ '}' }},
{{ '{' }}{designation}{{ '}' }},
{{ '{' }}{department}{{ '}' }},
| # | Title | Subject | Filters | Queued | Completed | Recipients | Sent | Failed | Created By | Created At |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $b->title }} | {{ $b->subject }} |
@if(empty($b->filters))
All Users
@else
{{ json_encode($b->filters) }}
@endif
|
{{ $b->queued_at ? $b->queued_at->format('d M Y, h:i A') : '-' }} | {{ $b->completed_at ? $b->completed_at->format('d M Y, h:i A') : '-' }} | {{ $total }} | {{ $sent }} | {{ $failed }} | {{ optional($b->creator)->name ?? 'N/A' }} | {{ $b->created_at->format('d M Y, h:i A') }} |