{{-- ===================================================== Etebarit - by Gisoo Web Solutions ------------------------------------------------------ Gisoo.net ------------------------------------------------------ Copyright (c) 2026 Gisoo Web Solutions ===================================================== This code is protected by copyright ===================================================== File: health.blade.php ------------------------------------------------------ Use: Admin health page on the shared panel shell. Skeleton for M0; the full comprehensive test system is built out in M7. ===================================================== --}} @extends('layouts.admin') @section('title', __('admin.health.title')) @section('breadcrumb') @endsection @section('page')

{{ __('admin.health.title') }}

{{ __('admin.health.info') }}
@foreach ($checks as $key => $check) @endforeach
{{ __('admin.health.check') }} {{ __('admin.health.status') }} {{ __('admin.health.detail') }}
{{ __("admin.health.checks.{$key}") }} @if ($check['passing']) {{ __('admin.health.passing') }} @else {{ __('admin.health.failing') }} @endif {{ $check['detail'] }}
{{-- Recent problems straight out of the project logs (constitution ยง7). --}}

{{ __('admin.health.logs_title') }}

@forelse ($problems as $problem)
! $loop->first])> $problem['level'] === 'WARNING', 'bg-secondary-50 text-secondary-500' => $problem['level'] !== 'WARNING', ])>{{ $problem['level'] }}
{{ $problem['text'] }}
{{-- Left-aligned so it sits under the LTR error text. --}}
@jalaliDateTime($problem['time'])
@empty

{{ __('admin.health.logs_empty') }}

@endforelse
@endsection