@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) : '-' }}
@else

No calls recorded yet

@endif