Call Logs

Track all customer communications

Add Call Log

Total Calls

{{ $callLogs->total() }}

Incoming

{{ $callLogs->where('call_type', 'incoming')->count() }}

Outgoing

{{ $callLogs->where('call_type', 'outgoing')->count() }}

Missed

{{ $callLogs->where('call_type', 'missed')->count() }}

@forelse($callLogs as $log) @empty @endforelse
Date/Time Customer Phone Type Duration Purpose Actions
{{ \Carbon\Carbon::parse($log->call_date)->format('M d, Y H:i') }} {{ $log->customer->name ?? 'N/A' }} {{ $log->phone_number }} @if($log->call_type === 'incoming') Incoming @elseif($log->call_type === 'outgoing') Outgoing @else Missed @endif {{ $log->duration ?? 'N/A' }} {{ $log->purpose }}

No call logs found.

{{ $callLogs->links() }}