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