@extends('layouts.app') @section('site_title', formatTitle([$website->domain, __('Cities'), config('settings.title')])) @section('head_content') @endsection @section('content')
@include('stats.partials.header')
{{ __('Cities') }}
@include('stats.partials.filters', ['name' => __('Name'), 'count' => __('Visitors')])
@if(count($cities) == 0) {{ __('No data') }}. @else
{{ __('Name') }}
{{ __('Visitors') }}
{{ __('Total') }}
{{ number_format($total->count, 0, __('.'), __(',')) }}
{{ number_format((($total->count / $total->count) * 100), 1, __('.'), __(',')) }}%
@foreach($cities as $city)
{{ (!empty(explode(':', $city->value)[1]) ? explode(':', $city->value)[1] : __('Unknown')) }}
@if(!empty(explode(':', $city->value)[1])) {{ explode(':', $city->value)[1] }} @else {{ __('Unknown') }} @endif
{{ number_format($city->count, 0, __('.'), __(',')) }}
{{ number_format((($city->count / $total->count) * 100), 1, __('.'), __(',')) }}%
@endforeach
{{ __('Showing :from-:to of :total', ['from' => $cities->firstItem(), 'to' => $cities->lastItem(), 'total' => $cities->total()]) }}
{{ $cities->onEachSide(1)->links() }}
@endif
{{ __('Report generated on :date at :time (UTC :offset).', ['date' => (clone $now)->tz(Auth::user()->timezone ?? config('settings.timezone'))->format(__('Y-m-d')), 'time' => (clone $now)->tz(Auth::user()->timezone ?? config('settings.timezone'))->format('H:i:s'), 'offset' => (clone $now)->tz(Auth::user()->timezone ?? config('settings.timezone'))->getOffsetString()]) }} {{ __('Refresh report') }}
@endsection @include('shared.sidebars.user')