@if(isset($report['results'][$name]))
@include('reports.partials.status')
{{ __('Load time') }}
@if($report['results'][$name]['passed'])
{{ __('The webpage loaded in :value seconds.', ['value' => number_format($report['results'][$name]['value'], 2, __('.'), __(','))]) }}
@else @foreach($report['results'][$name]['errors'] as $error => $details)
@if($error == 'too_slow') {{ __('The webpage load should be under :value seconds.', ['value' => number_format($details['max'], 2, __('.'), __(','))]) }}
{{ __('The webpage loaded in :value seconds.', ['value' => number_format($report['results'][$name]['value'], 2, __('.'), __(','))]) }}
@endif
@endforeach @endif
{{ __('The load time indicates the HTML\'s total load time, and does not include the external resources, such as images, scripts, or other resources.') }}
@endif