@if (count($checkResults?->storedCheckResults ?? []))
@foreach ($checkResults->storedCheckResults as $result)
{{ $result->label }}
@if (!empty($result->notificationMessage))
@if ($result->notificationMessage === 'Crashed')
{{ __('Failed to calculate. Your server configuration is preventing this feature from being calculated.') }}
@else
{{ str_replace('The debug mode was expected to be `false`, but actually was `true`', __('Debug mode is enabled. If this is your production site, it is recommended to disable it.'), $result->notificationMessage) }}
@endif
@else
{{ $result->shortSummary }}
@endif
@if(cache('crontab_check'))
{{ trans('Last time: ') . cache('crontab_check') }}
@else
Cron Jobs are disabled on your server. Click here to learn how to enable Cron Jobs.
@endif