{{ __('common.search') }}

Histories

Loading...
@switch($groupBy) @case('user_id') @foreach ($histories as $history) @if ($history->seedtime_avg < config('hitrun.seedtime')) @else @endif @endforeach
{{ __('user.user') }} @include('livewire.includes._sort-icon', ['field' => 'history.user_id']) {{ __('torrent.torrents') }} @include('livewire.includes._sort-icon', ['field' => 'torrent_count']) {{ __('user.credited-upload') }} @include('livewire.includes._sort-icon', ['field' => 'history.uploaded_sum']) {{ __('user.upload-true') }} @include('livewire.includes._sort-icon', ['field' => 'history.actual_uploaded_sum']) Client Upload @include('livewire.includes._sort-icon', ['field' => 'history.client_uploaded_sum']) {{ __('user.credited-download') }} @include('livewire.includes._sort-icon', ['field' => 'history.downloaded_sum']) {{ __('user.download-true') }} @include('livewire.includes._sort-icon', ['field' => 'history.actual_downloaded_sum']) Client Download @include('livewire.includes._sort-icon', ['field' => 'history.client_downloaded_sum']) {{ __('torrent.refunded') }} @include('livewire.includes._sort-icon', ['field' => 'history.refunded_download_sum']) {{ __('torrent.started') }} @include('livewire.includes._sort-icon', ['field' => 'history.created_at_min']) Announced @include('livewire.includes._sort-icon', ['field' => 'history.updated_at_max']) {{ __('user.avg-seedtime') }} @include('livewire.includes._sort-icon', ['field' => 'history.seedtime_avg']) {{ __('torrent.seeding') }} @include('livewire.includes._sort-icon', ['field' => 'seeding_count']) {{ __('torrent.leeching') }} @include('livewire.includes._sort-icon', ['field' => 'leeching_count'])
{{ $history->torrent_count }} {{ App\Helpers\StringHelper::formatBytes($history->uploaded_sum, 2) }} {{ App\Helpers\StringHelper::formatBytes($history->actual_uploaded_sum, 2) }} {{ App\Helpers\StringHelper::formatBytes($history->client_uploaded_sum, 2) }} {{ App\Helpers\StringHelper::formatBytes($history->downloaded_sum, 2) }} {{ App\Helpers\StringHelper::formatBytes($history->actual_downloaded_sum, 2) }} {{ App\Helpers\StringHelper::formatBytes($history->client_downloaded_sum, 2) }} {{ App\Helpers\StringHelper::formatBytes($history->refunded_download_sum, 2) }} {{ $weeks = intdiv($history->seedtime_avg ?? 0, 3600 * 24 * 7) }}w {{ intdiv(($history->seedtime_avg ?? 0) - $weeks * 3600 * 24 * 7, 3600) }}h {{ $weeks = intdiv($history->seedtime_avg ?? 0, 3600 * 24 * 7) }}w {{ intdiv(($history->seedtime_avg ?? 0) - $weeks * 3600 * 24 * 7, 3600) }}h {{ $history->seeding_count }} {{ $history->leeching_count }} {{ $history->prewarn_count }} {{ $history->hitrun_count }} {{ $history->immune_count }}
@break @default @foreach ($histories as $history) @if ($history->seedtime < config('hitrun.seedtime')) @else @endif @endforeach
{{ __('user.user') }} @include('livewire.includes._sort-icon', ['field' => 'history.user_id']) {{ __('torrent.torrent') }} @include('livewire.includes._sort-icon', ['field' => 'history.torrent_id']) {{ __('torrent.agent') }} @include('livewire.includes._sort-icon', ['field' => 'history.agent']) {{ __('user.credited-upload') }} @include('livewire.includes._sort-icon', ['field' => 'history.uploaded']) {{ __('user.upload-true') }} @include('livewire.includes._sort-icon', ['field' => 'history.actual_uploaded']) Client Upload @include('livewire.includes._sort-icon', ['field' => 'history.client_uploaded']) {{ __('user.credited-download') }} @include('livewire.includes._sort-icon', ['field' => 'history.downloaded']) {{ __('user.download-true') }} @include('livewire.includes._sort-icon', ['field' => 'history.actual_downloaded']) Client Download @include('livewire.includes._sort-icon', ['field' => 'history.client_downloaded']) {{ __('torrent.refunded') }} @include('livewire.includes._sort-icon', ['field' => 'history.refunded_download']) {{ __('torrent.started') }} @include('livewire.includes._sort-icon', ['field' => 'history.created_at']) Announced @include('livewire.includes._sort-icon', ['field' => 'history.updated_at']) {{ __('torrent.completed_at') }} @include('livewire.includes._sort-icon', ['field' => 'history.completed_at']) {{ __('torrent.prewarn') }} @include('livewire.includes._sort-icon', ['field' => 'history.prewarned_at']) {{ __('torrent.seedtime') }} @include('livewire.includes._sort-icon', ['field' => 'history.seedtime']) {{ __('torrent.seeding') }} @include('livewire.includes._sort-icon', ['field' => 'seeding']) {{ __('torrent.leeching') }} @include('livewire.includes._sort-icon', ['field' => 'leeching'])
{{ $history->torrent->name ?? '' }} {{ $history->agent }} {{ App\Helpers\StringHelper::formatBytes($history->uploaded, 2) }} {{ App\Helpers\StringHelper::formatBytes($history->actual_uploaded, 2) }} {{ App\Helpers\StringHelper::formatBytes($history->client_uploaded, 2) }} {{ App\Helpers\StringHelper::formatBytes($history->downloaded, 2) }} {{ App\Helpers\StringHelper::formatBytes($history->actual_downloaded, 2) }} {{ App\Helpers\StringHelper::formatBytes($history->client_downloaded, 2) }} {{ App\Helpers\StringHelper::formatBytes($history->refunded_download, 2) }} {{ $weeks = intdiv($history->seedtime ?? 0, 3600 * 24 * 7) }}w {{ intdiv(($history->seedtime ?? 0) - $weeks * 3600 * 24 * 7, 3600) }}h {{ $weeks = intdiv($history->seedtime ?? 0, 3600 * 24 * 7) }}w {{ intdiv(($history->seedtime ?? 0) - $weeks * 3600 * 24 * 7, 3600) }}h @if ($history->active) @else @endif @if ($history->seeder) @else @endif @if ($history->immune) @else @endif @if ($history->hitrun) @else @endif
@endswitch {{ $histories->links('partials.pagination') }}