📞 Call Records Management
Total Calls
{{ $stats['total_calls'] }}
Audio Calls
{{ $stats['audio_calls'] }}
Video Calls
{{ $stats['video_calls'] }}
Missed Calls
{{ $stats['missed_calls'] }}
Total Duration
{{ intdiv($stats['total_duration'], 3600) }}h
@if ($calls->count() > 0)
@else
@endif
@if ($calls->count() > 0)
| From | To | Type | Status | Duration | Date & Time | Actions |
|---|---|---|---|---|---|---|
| {{ $call->caller->name }} | {{ $call->receiver->name }} | {{ ucfirst($call->call_type) }} | {{ ucfirst($call->status) }} | {{ $call->duration_formatted ?? '0:00' }} | {{ $call->created_at->format('M d, Y H:i') }} |
📞 No Call Records
No call records found yet.
{{ $calls->links() }}
@endif