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

CAPA — 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' => 'Overdue', 'value' => $snapshot['overdue'] ?? 0, 'color' => 'danger', 'icon' => 'clock'], ['label' => 'Awaiting Effectiveness', 'value' => $snapshot['awaiting_effectiveness'] ?? 0, 'color' => 'warning', 'icon' => 'hourglass-half'], ['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' => 'On-Time Closure Rate', 'value' => ($snapshot['on_time_closure_rate'] ?? null) !== null ? $snapshot['on_time_closure_rate'] . '%' : '—', 'color' => 'success', 'icon' => 'check'], ]; @endphp @foreach($cards as $c)
{{ $c['label'] }}
{{ $c['value'] }}
@endforeach
30-Day Trend
By Status
@endsection @push('scripts') @endpush