@extends('layouts.admin') @section('content')

{{ $title }}

@if(!empty($topgrabs) && count($topgrabs) > 0)

Top Grabbers

@foreach($topgrabs as $grab) @endforeach
Username Grabs
{{ $grab->username }} {{ $grab->grabs }}
@endif @if(!empty($topdownloads) && count($topdownloads) > 0)

Top Downloads

@foreach($topdownloads as $download) @endforeach
Release Downloads
{{ $download->searchname }} {{ $download->grabs }}
@endif @if(!empty($recent) && count($recent) > 0)

Recently Added Releases

@foreach($recent as $item) @endforeach
Date Releases
{{ $item->thedate }} {{ $item->num }}
@endif @if(!empty($usersbymonth) && count($usersbymonth) > 0)

User Signups by Month

@foreach($usersbymonth as $month) @endforeach
Month Signups
{{ $month->mth }} {{ $month->num }}
@endif @if(!empty($usersbyrole) && count($usersbyrole) > 0)

Users by Role

@foreach($usersbyrole as $role) @endforeach
Role Count
{{ $role->name }} {{ $role->num }}
@endif @if(empty($topgrabs) && empty($topdownloads) && empty($recent) && empty($usersbymonth) && empty($usersbyrole))

No statistics available

Statistics will appear here once data is collected.

@endif
@endsection