@extends('layouts.admin') @section('title', __('Bounced Emails')) @section('page-title', __('Bounced Emails')) @section('content')
{{ __('Apply') }} {{ __('Reset') }}
@forelse($bounces as $bounce) @empty @endforelse
{{ __('Email') }} {{ __('Type') }} {{ __('Code') }} {{ __('Reason') }} {{ __('Campaign') }} {{ __('List') }} {{ __('Bounce Mailbox') }} {{ __('Last Bounced') }}
{{ $bounce->email }} {{ __(strtoupper($bounce->bounce_type)) }} {{ $bounce->bounce_code ?? '-' }}
{{ $bounce->reason ?? '-' }}
@if($bounce->campaign) #{{ $bounce->campaign->id }} @else - @endif {{ $bounce->emailList?->name ?? '-' }}
{{ $bounce->bounce_server_username ?? '-' }} {{ $bounce->bounce_server_mailbox ? '(' . $bounce->bounce_server_mailbox . ')' : '' }}
{{ $bounce->last_bounced_at?->format('M d, Y H:i') ?? '-' }}
{{ __('No bounced emails found.') }}
{{ $bounces->links() }}
@endsection