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