@extends('layout.default') @section('title') {{ __('stat.stats') }} - {{ config('other.title') }} @endsection @section('breadcrumbs') @endsection @section('nav-tabs') @include('partials.statsusermenu') @endsection @section('page', 'page__stats--downloaded') @section('main')

{{ __('stat.top-downloaders') }}

@foreach ($downloaded as $user) @endforeach
# {{ __('common.user') }} {{ __('common.upload') }} {{ __('common.download') }} {{ __('common.ratio') }}
{{ $loop->iteration }} {{ \App\Helpers\StringHelper::formatBytes($user->uploaded, 2) }} {{ \App\Helpers\StringHelper::formatBytes($user->downloaded, 2) }} {{ $user->ratio }}
@endsection