@if(isset($report['results'][$name]))
@include('reports.partials.status')
{{ __('Page size') }}
@if($report['results'][$name]['passed'])
{{ __('The size of the HTML webpage is :value.', ['value' => formatBytes($report['results'][$name]['value'], 2, __('.'), __(','))]) }}
@else @foreach($report['results'][$name]['errors'] as $error => $details)
@if($error == 'too_large') {{ __('The webpage HTML size is larger than :value.', ['value' => formatBytes($details['max'], 2, __('.'), __(','))]) }} @endif
@endforeach @endif
{{ __('The page size indicates the HTML\'s total size, and does not include the external resources, such as images, scripts, or other resources.') }}
@endif