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