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