@if(isset($report['results'][$name]))
@include('reports.partials.status')
{{ __('Content length') }}
@if($report['results'][$name]['passed'])
{{ __('The webpage has :value words.', ['value' => number_format($report['results'][$name]['value'], 0, __('.'), __(','))]) }}
@else @foreach($report['results'][$name]['errors'] as $error => $details)
@if($error == 'too_few') {{ __('The are less than :value words on the webpage.', ['value' => number_format($details['min'], 0, __('.'), __(','))]) }}
{{ __('The webpage has :value words.', ['value' => number_format($report['results'][$name]['value'], 0, __('.'), __(','))]) }}
@endif
@endforeach @endif
{{ __('The content length represents the number of words found on the webpage.') }} {{ __('The webpage should contain a decent amount of words.') }}
@endif