@extends('layout.default') @section('title') {{ $user->username }} {{ __('user.torrents') }} - {{ config('other.title') }} @endsection @section('breadcrumbs') @endsection @section('page', 'page__user-torrents--index') @section('nav-tabs') @include('user.buttons.user') @endsection @section('main') @livewire('user-torrents', ['userId' => $user->id])

{{ __('user.statistics') }}

{{ __('user.total-download') }}
{{ App\Helpers\StringHelper::formatBytes($history->download ?? 0, 2) }}
{{ __('user.total-download') }} ({{ __('user.credited-download') }})
{{ App\Helpers\StringHelper::formatBytes($history->credited_download ?? 0, 2) }}
{{ __('user.total-upload') }}
{{ App\Helpers\StringHelper::formatBytes($history->upload ?? 0, 2) }}
{{ __('user.total-upload') }} ({{ __('user.credited-upload') }})
{{ App\Helpers\StringHelper::formatBytes($history->credited_upload ?? 0, 2) }}
@endsection