@extends('layouts.app') @section('title') Bounced Recipients @endsection @section('content')

Bounced Recipients

List

display errors and messages @if(session('success')) @endif @if(session('error')) @endif

Bounced Recipients

@if(count($bouncedRecipients)> 0) @foreach($bouncedRecipients as $bouncedRecipient) @endforeach @else @endif
Recipient Reason Action
{{$bouncedRecipient->recipient}} {{$bouncedRecipient->reason}}
@csrf @method('DELETE')
No Bounced Recipients
@endsection