@extends('layout.default') @section('title') {{ __('stat.stats') }} - {{ config('other.title') }} @endsection @section('breadcrumbs') @endsection @section('nav-tabs') @for ($i = $birthYear; $i < now()->year; $i++)
  • {{ $i }}
  • @endfor @endsection @section('page', 'page__stats--overview') @section('main')

    Yearly Overview

    That's A Wrap!

    {{ $year }}

    Another strong year here at {{ config('app.name') }}. To every user who made a contribution big or small please accept our sincere thanks. Now, without further ado, here's the best and worst of the year!

    Top 10 Movies (Based on downloads count)

    @foreach ($topMovies as $work)
    {{ $work->download_count }}
    @endforeach

    5 Worst Movies (Based on downloads count)

    @foreach ($bottomMovies as $work)
    {{ $work->download_count }}
    @endforeach

    Top 10 TV Shows (Based on downloads count)

    @foreach ($topTv as $work)
    {{ $work->download_count }}
    @endforeach

    5 Worst TV Shows (Based on downloads count)

    @foreach ($bottomTv as $work)
    {{ $work->download_count }}
    @endforeach

    Top 10 Users (Based on number of torrent uploads made)

    @foreach ($uploaders as $uploader)

    {{ $uploader->value }} {{ __('user.uploads') }}

    @endforeach

    Top 10 Users (Based on number of torrent requests made)

    @foreach ($requesters as $requester)

    {{ $requester->value }} {{ __('request.requests') }}

    @endforeach

    Top 10 Users (Based on number of torrent requests filled)

    @foreach ($fillers as $filler)

    {{ $filler->value }} {{ __('notification.request-fills') }}

    @endforeach

    Top 10 Users (Based on number of comments made)

    @foreach ($commenters as $commenter)

    {{ $commenter->value }} {{ __('user.comments') }}

    @endforeach

    Top 10 Users (Based on number of posts made)

    @foreach ($posters as $poster)

    {{ $poster->value }} {{ __('common.posts') }}

    @endforeach

    Top 10 Users (Based on number of thanks given)

    @foreach ($thankers as $thanker)

    {{ $thanker->value }} {{ __('torrent.thanks') }}

    @endforeach

    Overall

    New users this year
    {{ $newUsers }}
    Movies uploaded this year
    {{ $movieUploads }}
    TV Shows uploaded this year
    {{ $tvUploads }}
    Total torrents uploaded this year
    {{ $totalUploads }}
    Total torrents downloaded this year
    {{ $totalDownloads }}

    Closing Remarks

    Thank You!

    For a wonderful {{ $year }} at {{ config('app.name') }}

    Special thanks from, @foreach ($staffers as $group) @endforeach
    @endsection