@extends('layouts.app') @section('title', 'System-Health') @section('heading', 'System-Health') @section('content')
@foreach($checks as $name => $check)

{{ str_replace('_', ' ', $name) }}

{{ strtoupper($check['status']) }}

{{ $check['message'] }}

@endforeach
@endsection