@if(isset($report['results'][$name]))
@include('reports.partials.status')
{{ __('Language') }}
@if($report['results'][$name]['passed'])
{{ __('The webpage has the language declared.') }}
{{ $report['results'][$name]['value'] }}
@else @foreach($report['results'][$name]['errors'] as $error => $details)
@if($error == 'missing') {{ __('The webpage does not have a language declared.') }} @endif
@endforeach @endif
{{ __('The lang attribute declares the webpage\'s language, helping search engines identify the language in which the content is written, and browsers to offer translation suggestions.') }}
@endif