@section('site_title', formatTitle([$website->url, __('Campaigns'), config('settings.title')]))
@include('icons.campaign', ['class' => 'fill-current width-5 height-5'])
@if(isset($first->value))
@if($first->value) {{ $first->value }} @else {{ __('Unknown') }} @endif
@else
{{ __('No data') }}
@endif
{{ (isset($first->count) ? number_format($first->count, 0, __('.'), __(',')) : '—') }}
@include('icons.trending_up', ['class' => 'fill-current width-3 height-3'])
{{ 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 {{ __('Unknown') }} @endif
@else
{{ __('No data') }}
@endif
{{ (isset($last->count) ? number_format($last->count, 0, __('.'), __(',')) : '—') }}
@include('icons.trending_down', ['class' => 'fill-current width-3 height-3'])
{{ mb_strtolower(__('Least popular')) }}
{{ (isset($last->count) ? number_format((($last->count / $total->count) * 100), 1, __('.'), __(',')).'%' : '—') }}
{{ __('Campaigns') }}
@include('stats.filters')
@if(count($campaigns) == 0) {{ __('No data') }}. @else
{{ __('Name') }}
{{ __('Visitors') }}
{{ __('Total') }}
{{ number_format($total->count, 0, __('.'), __(',')) }}
{{ number_format((($total->count / $total->count) * 100), 1, __('.'), __(',')) }}%
@foreach($campaigns as $campaign)
{{ $campaign->value }}
{{ number_format($campaign->count, 0, __('.'), __(',')) }}
{{ number_format((($campaign->count / $total->count) * 100), 1, __('.'), __(',')) }}%
@endforeach
{{ __('Showing :from-:to of :total', ['from' => $campaigns->firstItem(), 'to' => $campaigns->lastItem(), 'total' => $campaigns->total()]) }}
{{ $campaigns->onEachSide(1)->links() }}
@endif