@if(!empty($topgrabs) && count($topgrabs) > 0)
@foreach($topgrabs as $index => $grab)
{{ number_format($grab['grabs']) }}
@endforeach
@endif
@if(!empty($recent) && count($recent) > 0)
@foreach($recent as $item)
{{ number_format($item['count']) }}
@endforeach
@endif
@if(!empty($usersbymonth) && count($usersbymonth) > 0)
@foreach($usersbymonth as $month)
{{ number_format($month['signups']) }}
@endforeach
@endif
@if(!empty($usersbyrole) && count($usersbyrole) > 0)
@foreach($usersbyrole as $role)
{{ number_format($role['users']) }}
@endforeach
@endif
@if(empty($topgrabs) && empty($recent) && empty($usersbymonth) && empty($usersbyrole))
No statistics available
Statistics will appear here once data is collected.