@section('site_title', formatTitle([$website->url, __('Referrers')]))
@if(isset($first->value)) @if($first->value)
{{ $first->value }}
@else
{{ __('Direct, Email, SMS') }}
@endif @else
{{ __('No data') }}
@endif
{{ (isset($first->count) ? number_format($first->count, 0, __('.'), __(',')) : '—') }}
{{ mb_strtolower(__('Most popular')) }}
{{ (isset($first->count) ? number_format((($first->count / $total->count) * 100), 1, __('.'), __(',')).'%' : '—') }}
@if(isset($last->value)) @if($last->value)
{{ $last->value }}
@else
{{ __('Direct, Email, SMS') }}
@endif @else
{{ __('No data') }}
@endif
{{ (isset($last->count) ? number_format($last->count, 0, __('.'), __(',')) : '—') }}
{{ mb_strtolower(__('Least popular')) }}
{{ (isset($last->count) ? number_format((($last->count / $total->count) * 100), 1, __('.'), __(',')).'%' : '—') }}
@if(count($referrers) == 0)
{{ __('No results found.') }}
@else
@foreach($referrers as $referrer) @endforeach
{{ __('Website') }} {{ __('Visitors') }} {{ number_format($total->count, 0, __('.'), __(',')) }} ({{ number_format((($total->count / $total->count) * 100), 1, __('.'), __(',')) }}%)
@if($referrer->value)
{{ $referrer->value }}
@else
{{ __('Direct, Email, SMS') }}
@endif
{{ number_format($referrer->count, 0, __('.'), __(',')) }}
{{ number_format((($referrer->count / $total->count) * 100), 1, __('.'), __(',')) }}%
@endif