@php $healthStatus = $systemHealth['overall_status'] ?? 'healthy'; $statusColor = match($healthStatus) { 'healthy' => 'bg-green-100 text-green-700', 'degraded' => 'bg-amber-100 text-amber-700', 'critical' => 'bg-red-100 text-red-700', default => 'bg-slate-100 text-slate-700' }; $statusLabel = ucfirst($healthStatus); @endphp

Overall Status

{{ $statusLabel }}

Queues

{{ $systemHealth['queues_pending'] ?? 0 }}

jobs pending

Errors (24h)

{{ $systemHealth['errors_24h'] ?? 0 }}

recent issues

Reports

{{ $systemHealth['open_reports'] ?? 0 }}

awaiting review