@extends('layouts.app') @section('title', 'سجل المكالمات') @section('content')

سجل المكالمات

جميع المكالمات الصوتية التي تم إجراؤها

@if(!isset($calls) || $calls->isEmpty())

لا توجد مكالمات

سيتم عرض المكالمات هنا عند إجرائها

@else
@foreach($calls as $call) @endforeach
النوع المستلم الحالة التاريخ المدة
{{ $call->type }} {{ $call->recipient_name ?? $call->recipient_phone }} @php $statusClass = match($call->status) { 'completed' => 'bg-green-100 text-green-700', 'in_progress', 'initiated' => 'bg-blue-100 text-blue-700', 'failed' => 'bg-red-100 text-red-700', 'pending' => 'bg-yellow-100 text-yellow-700', default => 'bg-gray-100 text-gray-500', }; @endphp {{ $call->status }} {{ $call->created_at->format('Y-m-d H:i') }} {{ $call->call_duration ? gmdate('i:s', $call->call_duration) : '-' }}
{{ $calls->links() }}
@endif
@endsection