@if($calls->count() > 0)
@foreach($calls as $call) @endforeach
Date/Time Phone Direction Status Duration
{{ $call->started_at?->format('M j, Y g:i A') ?? '-' }} {{ $call->phone_number }} @if($call->direction === 'inbound') @else @endif {{ ucfirst($call->direction) }} {{ ucfirst($call->status) }} {{ $call->duration_seconds ? gmdate('i:s', $call->duration_seconds) : '-' }}
{{ $calls->links() }}
@else

No calls yet

Call records will appear here when this citizen's phone number matches incoming calls.

@endif