@section('site_title', formatTitle([$website->domain, __('Landing pages'), config('settings.title')]))
{{ __('Landing pages') }}
@include('stats.filters', ['name' => __('URL'), 'count' => __('Visitors')])
@if(count($landingPages) == 0) {{ __('No data') }}. @else
{{ __('URL') }}
{{ __('Visitors') }}
{{ __('Total') }}
{{ number_format($total->count, 0, __('.'), __(',')) }}
{{ number_format((($total->count / $total->count) * 100), 1, __('.'), __(',')) }}%
@foreach($landingPages as $landingPage)
{{ number_format($landingPage->count, 0, __('.'), __(',')) }}
{{ number_format((($landingPage->count / $total->count) * 100), 1, __('.'), __(',')) }}%
@endforeach
{{ __('Showing :from-:to of :total', ['from' => $landingPages->firstItem(), 'to' => $landingPages->lastItem(), 'total' => $landingPages->total()]) }}
{{ $landingPages->onEachSide(1)->links() }}
@endif