@extends('layouts.customer') @section('title', 'Campaign Recipients - ' . $campaign->name) @section('page-title', 'Campaign Recipients') @section('content')

{{ $campaign->name }}

Recipient Details

← Back to Campaign
Filter
@if(request('search') || request('status'))
Clear
@endif
@forelse($recipients as $recipient) @empty @endforelse
Email Name Status Sent At Opened At Clicked At Error
{{ $recipient->email }} {{ $recipient->first_name }} {{ $recipient->last_name }} {{ ucfirst($recipient->status) }} {{ $recipient->sent_at ? $recipient->sent_at->format('M d, Y H:i') : '-' }} {{ $recipient->opened_at ? $recipient->opened_at->format('M d, Y H:i') : '-' }}
{{ $recipient->clicked_at ? $recipient->clicked_at->format('M d, Y H:i') : '-' }}
@if($recipient->logs->count() > 0)
@foreach($recipient->logs as $log) @endforeach
@endif
@if($recipient->failure_reason) {{ \Illuminate\Support\Str::limit($recipient->failure_reason, 50) }} @else - @endif
No recipients found.
@if($recipients->hasPages())
{{ $recipients->links() }}
@endif
@endsection