@extends('adminlte::page')
@section('title', 'Case Statistics')
@section('content_header')
Case Statistics Dashboard
@stop
@section('content')
{{ $totalCases }}
Total Cases
{{ $openCases }}
Open Cases
{{ $closedCases }}
Closed Cases
{{ $criticalPriorityCases }}
Critical Priority Cases
Status |
Count |
Percentage |
@php
$statusLabels = [
'open' => 'Open',
'under_investigation' => 'Under Investigation',
'pending_review' => 'Pending Review',
'closed' => 'Closed',
'reopened' => 'Reopened',
'archived' => 'Archived',
];
@endphp
@foreach($casesByStatus as $status => $count)
{{ $statusLabels[$status] ?? ucfirst($status) }} |
{{ $count }} |
{{ number_format(($count / $totalCases) * 100, 1) }}% |
@endforeach
@stop
@section('css')
@stop
@section('js')
@stop