{{ __('Workspace') }}

{{ __('Call') }} {{ __('Logs') }}

{{ __('Every voice call your AI handled — transcripts, recordings, tool timelines.') }}

Assistants
{{ __('Total') }}
{{ $totals['total'] }}
{{ __('Last 24h') }}
{{ $totals['last_24h'] }}{{ $totals['minutes_24h'] }} {{ __('min') }}
{{ __('Completed') }}
{{ $totals['completed'] }}
{{ __('Failed') }}
{{ $totals['failed'] }}
{{ __('Caller') }}
{{ __('Assistant') }}
{{ __('Started') }}
{{ __('Duration') }}
{{ __('Status') }}
{{ __('Cost') }}
{{ __('Actions') }}
@forelse ($logs as $log)
{{ $log->caller_phone }}
{{ $log->direction }} · {{ $log->callee_phone }}
{{ $log->assistant?->name ?: '—' }}
{{ optional($log->started_at)->diffForHumans() ?: '—' }}
{{ $log->duration_display }}
{{ $log->status }}
{{ $log->cost_display }}
@empty
{{ __('No calls yet') }}

{{ __('Once a phone number is routed to one of your assistants, calls will land here with transcripts, recordings, and any tool calls.') }}

@endforelse
{{ __('Showing') }} {{ $logs->count() }} of {{ $logs->total() }}
@if ($logs->hasPages())
{{ $logs->links() }}
@endif