@extends('layouts.app') @section('content')

System Health

Production health checks for the application.

{{ strtoupper($health['status'] ?? 'UNKNOWN') }}
@foreach(($health['checks'] ?? []) as $name => $check)
{{ ucfirst($name) }}
{{ strtoupper($check['status'] ?? 'UNKNOWN') }}

{{ $check['message'] ?? '' }}

@endforeach
@endsection