@if(isset($report['results'][$name]))
@include('reports.partials.status')
{{ __('Unsafe cross-origin links') }}
@if($report['results'][$name]['passed'])
{{ __('The webpage does not have unsafe cross-origin links.') }}
@else @if($report->user_id == 0) @include('reports.partials.limited') @else @foreach($report['results'][$name]['errors'] as $error => $details)
@if($error == 'failed') {{ __('The webpage has :value unsafe cross-origin links.', ['value' => number_format(count($details), 0, __('.'), __(',')), 'format' => 'xxx']) }} @endif
@endforeach @endif @endif
{{ __('The unsafe cross-origin links indicates the external links that open in a new tab which can expose your website to performance and security issues.') }}
@endif