Call Log Details

{{ ucfirst($callLog->call_type) }} Call

{{ $callLog->customer ? $callLog->customer->name : 'N/A' }}

{{ $callLog->customer ? $callLog->customer->phone : 'N/A' }}

{{ $callLog->user ? $callLog->user->name : 'N/A' }}

@if($callLog->call_type === 'incoming') Incoming @elseif($callLog->call_type === 'outgoing') Outgoing @else Missed @endif

{{ $callLog->call_datetime ? $callLog->call_datetime->format('M d, Y h:i A') : 'N/A' }}

{{ $callLog->duration ? $callLog->duration . ' minutes' : 'Not recorded' }}

@if($callLog->notes)

{{ $callLog->notes }}

@endif
Created: {{ $callLog->created_at->format('M d, Y h:i A') }} Updated: {{ $callLog->updated_at->format('M d, Y h:i A') }}