📞 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) @foreach ($calls as $call) @endforeach
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') }}
@csrf @method('DELETE')
@else

📞 No Call Records

No call records found yet.

@endif
@if ($calls->count() > 0)
{{ $calls->links() }}
@endif