@extends('layouts.app') @php $fmtNum = fn($v) => $v === null ? '—' : number_format((float) $v, 1); @endphp @section('title', 'KPI — Complaints') @section('content')

Complaints — KPIs

Back to Overview
@php $cards = [ ['label' => 'Total', 'value' => $snapshot['total'] ?? 0, 'color' => 'primary', 'icon' => 'database'], ['label' => 'Open', 'value' => $snapshot['open'] ?? 0, 'color' => 'info', 'icon' => 'folder-open'], ['label' => 'Critical', 'value' => $snapshot['critical'] ?? 0, 'color' => 'danger', 'icon' => 'exclamation-circle'], ['label' => 'Reportable Pending', 'value' => $snapshot['reportable_pending'] ?? 0, 'color' => 'warning', 'icon' => 'file-signature'], ['label' => 'Reportable Overdue', 'value' => $snapshot['reportable_overdue'] ?? 0, 'color' => 'danger', 'icon' => 'clock'], ['label' => 'Closed (This Month)', 'value' => $snapshot['closed_this_month'] ?? 0, 'color' => 'success', 'icon' => 'check-circle'], ['label' => 'Avg Age (Open)', 'value' => $fmtNum($snapshot['avg_age_days'] ?? null) . ' d', 'color' => 'secondary', 'icon' => 'hourglass-half'], ['label' => 'Avg Closure Time', 'value' => $fmtNum($snapshot['avg_closure_days'] ?? null) . ' d', 'color' => 'secondary', 'icon' => 'clock'], ]; @endphp @foreach($cards as $c)
{{ $c['label'] }}
{{ $c['value'] }}
@endforeach
30-Day Intake Trend
By Severity
@endsection @push('scripts') @endpush