@section('site_title', formatTitle([$link->alias, __('Languages'), __('Stats'), config('settings.title')])) @if($link->user->can('stats', ['App\Models\Link']) || (Auth::check() && Auth::user()->role == 1))
{{ __('Languages') }}
@include('stats.filters', ['name' => __('Name'), 'count' => __('Clicks')])
@if(count($languages) == 0) {{ __('No data') }}. @else
{{ __('Name') }}
{{ __('Clicks') }}
{{ __('Total') }}
{{ number_format($total->count, 0, __('.'), __(',')) }}
{{ number_format((($total->count / $total->count) * 100), 1, __('.'), __(',')) }}%
@foreach($languages as $language)
@if($language->value) value]['iso'])) data-tooltip="true" title="{{ __(config('languages')[$language->value]['iso']) }}" @endif>{{ $language->value }} @else {{ __('Unknown') }} @endif
{{ number_format($language->count, 0, __('.'), __(',')) }}
{{ number_format((($language->count / $total->count) * 100), 1, __('.'), __(',')) }}%
@endforeach
{{ __('Showing :from-:to of :total', ['from' => $languages->firstItem(), 'to' => $languages->lastItem(), 'total' => $languages->total()]) }}
{{ $languages->onEachSide(1)->links() }}
@endif
@else
@if(paymentProcessors()) @if(Auth::check() && $link->user->id == Auth::user()->id) @include('shared.features.locked') @else @include('shared.features.unavailable') @endif @else @include('shared.features.unavailable') @endif
@endif