{{-- 3 widgets pequeños --}} {{-- Widget grande: llamadas por cuenta SIP (últimos 7 días) --}}

Actividad de llamadas

Últimos 7 días — por cuenta SIP

Salientes Entrantes
@if(count($llamadasPorCuenta) > 0) @php $maxVal = max(array_column($llamadasPorCuenta, 'total')) ?: 1; @endphp
@foreach($llamadasPorCuenta as $cuenta) @php $pctSal = ($cuenta['salientes'] / $maxVal) * 100; $pctEnt = ($cuenta['entrantes'] / $maxVal) * 100; @endphp
{{-- Total --}} {{ number_format($cuenta['total']) }} {{-- Barras apiladas --}}
{{-- Etiquetas --}} {{ $cuenta['descripcion'] }} {{ $cuenta['usuario'] }}
{{ number_format($cuenta['salientes']) }} {{ number_format($cuenta['entrantes']) }}
@endforeach
@else
No hay datos de llamadas disponibles.
@endif