Segment

{{ $batch->segment->name ?? 'N/A' }}

@if($batch->segment) {{ ucfirst($batch->segment->type) }} @endif

Created

{{ $batch->created_at->format('M j, Y') }}

{{ $batch->created_at->format('g:i A') }}

Last Exported

@if($batch->last_exported_at)

{{ $batch->last_exported_at->format('M j, Y') }}

{{ $batch->last_exported_at->format('g:i A') }}

@else

Not exported yet

@endif
@if($batch->filter) @php $filters = json_decode($batch->filter, true) ?? []; @endphp @if(count($filters) > 0)

Filters Applied:

@foreach($filters as $filter) {{ str_replace('_', ' ', ucfirst($filter)) }} @endforeach @if($batch->max_email_count) Max: {{ number_format($batch->max_email_count) }} emails @endif
@endif @endif

Emails in Batch

@if($emails->count() > 0) @foreach($emails as $item) @if($item->email) @endif @endforeach
Email Name Organization Type Valid Exported
{{ $item->email->email }} {{ $item->email->full_name ?? '-' }} {{ $item->email->org_name ?? '-' }} {{ ucfirst($item->email->type) }} @if($item->email->valid) Valid @else Invalid @endif @if($item->exported_at) {{ $item->exported_at->format('M j, Y g:i A') }} @else Pending @endif
@else @endif
@if($emails->hasPages())
{{ $emails->links() }}
@endif
← Back to Exports