@extends('layouts.customer') @section('title', 'Bounced Emails') @section('page-title', 'Bounced Emails') @section('content')
Filter
@forelse($bounces as $bounce) @empty @endforelse
Email Campaign List Type Last Bounced Actions
{{ $bounce->email }} {{ $bounce->campaign?->name ?? '—' }} {{ $bounce->emailList?->name ?? '—' }} {{ $bounce->bounce_type ?? '—' }} {{ $bounce->last_bounced_at?->format('M d, Y H:i') ?? '—' }} View
No bounced emails found.
@if($bounces->hasPages())
{{ $bounces->links() }}
@endif
@endsection