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