@section('site_title', formatTitle([$report->host, __('Report'), config('settings.title')])) @section('head_content') @endsection @if(config('settings.ad_report_top'))
{!! config('settings.ad_report_top') !!}
@endif
@if(Auth::check() && Auth::user()->id == $report->user_id) @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('dashboard'), 'title' => __('Home')], ['url' => route('reports', ['project' => $report->project]), 'title' => __('Reports')], ['title' => __('Report')] ]]) @else @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('dashboard'), 'title' => __('Home')], ['title' => __('Report')] ]]) @endif
@if(isset($report->user->brand->logo) && $report->user->brand->logo) @endif
@if(isset($report->user->brand->name) && $report->user->brand->name)
{{ $report->user->brand->name }}
@endif @if(isset($report->user->brand->url) && $report->user->brand->url) @endif
@if(isset($report->user->brand->email) && $report->user->brand->email)
{{ $report->user->brand->email }}
@endif @if(isset($report->user->brand->phone) && $report->user->brand->phone)
{{ $report->user->brand->phone }}
@endif

{{ $report->url }}

@if(Auth::check() && Auth::user()->id == $report->user_id)
@csrf
@endif
{{ __('Overview') }}
{{ __('Report generated on :date at :time (UTC :offset).', ['date' => \Carbon\Carbon::now()->tz(Auth::user()->timezone ?? config('app.timezone'))->format(__('Y-m-d')), 'time' => \Carbon\Carbon::now()->tz(Auth::user()->timezone ?? config('app.timezone'))->format('H:i:s'), 'offset' => \Carbon\CarbonTimeZone::create((Auth::user()->timezone ?? config('app.timezone')))->toOffsetName()]) }}
{{ $report->generated_at->tz(Auth::user()->timezone ?? config('app.timezone'))->diffForHumans() }}
@if ($errors->first('results')) @endif
{{ number_format($report->result) }}
100
{{ $report['results']['title']['value'] }}
{{ $report['results']['meta_description']['value'] }}
@if(config('settings.ti'))
@endif
{{ __('SEO') }}
@foreach($report->categories['seo'] as $category) @include('reports.partials.' . str_replace('_', '-', $category), ['name' => $category]) @endforeach
{{ __('Performance') }}
@foreach($report->categories['performance'] as $category) @include('reports.partials.' . str_replace('_', '-', $category), ['name' => $category]) @endforeach
{{ __('Security') }}
@foreach($report->categories['security'] as $category) @include('reports.partials.' . str_replace('_', '-', $category), ['name' => $category]) @endforeach
{{ __('Miscellaneous') }}
@foreach($report->categories['miscellaneous'] as $category) @include('reports.partials.' . str_replace('_', '-', $category), ['name' => $category]) @endforeach
@if(config('settings.ad_report_bottom'))
{!! config('settings.ad_report_bottom') !!}
@endif