@section('site_title', formatTitle([$website->domain, __('Search engines'), config('settings.title')]))
{{ __('Search engines') }}
@include('stats.filters', ['name' => __('Website'), 'count' => __('Visitors')])
@if(count($searchEngines) == 0) {{ __('No data') }}. @else
{{ __('Website') }}
{{ __('Visitors') }}
{{ __('Total') }}
{{ number_format($total->count, 0, __('.'), __(',')) }}
{{ number_format((($total->count / $total->count) * 100), 1, __('.'), __(',')) }}%
@foreach($searchEngines as $searchEngine)
{{ number_format($searchEngine->count, 0, __('.'), __(',')) }}
{{ number_format((($searchEngine->count / $total->count) * 100), 1, __('.'), __(',')) }}%
@endforeach
{{ __('Showing :from-:to of :total', ['from' => $searchEngines->firstItem(), 'to' => $searchEngines->lastItem(), 'total' => $searchEngines->total()]) }}
{{ $searchEngines->onEachSide(1)->links() }}
@endif