@extends('layout.with-main') @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__yearly-overview--show') @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) @endforeach

    5 worst movies (based on downloads count)

    @foreach ($bottomMovies as $work) @endforeach

    Top 10 TV shows (based on downloads count)

    @foreach ($topTv as $work) @endforeach

    5 worst TV shows (based on downloads count)

    @foreach ($bottomTv as $work) @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