@extends('layouts.app') @section('content')

Call management

← Admin home
@foreach($stats as $label => $value)
{{ $value }} {{ str_replace('_', ' ', ucfirst($label)) }}
@endforeach

Active calls

@forelse($activeCalls as $call) @empty @endforelse
IDTypeInitiatorStatusStarted
{{ $call->id }} {{ $call->type }} / {{ $call->mode }} {{ $call->initiator?->name }} {{ $call->status }} {{ $call->created_at->diffForHumans() }}
No active calls

Recent call logs

@foreach($recentLogs as $log) @endforeach
CallActionUserTime
#{{ $log->call_id }} {{ $log->action }} {{ $log->user?->name ?? '—' }} {{ $log->created_at?->diffForHumans() }}

Recent calls

@foreach($recentCalls as $call) @endforeach
IDTypeInitiatorStatusDuration
{{ $call->id }} {{ $call->type }} {{ $call->initiator?->name }} {{ $call->status }} {{ $call->duration_seconds }}s
@endsection