@if(isset($report['results'][$name]))
@include('reports.partials.status')
{{ __('In-page links') }}
@if($report['results'][$name]['passed'])
{{ __('The number of links on the webpage is okay.') }}
@else @foreach($report['results'][$name]['errors'] as $error => $details)
@if($error == 'too_many') {{ __('The webpage contains more than :value links.', ['value' => number_format($details['max'], 0, __('.'), __(','))]) }} @endif
@endforeach @endif @if($report['results'][$name]['value'])
@foreach($report['results'][$name]['value'] as $key => $value) @endforeach
@endif
{{ __('The in-page links should be kept at a minimum, to avoid issues with search engines not being able to crawl additional links from the webpage.') }}
@endif