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