| {{ __('common.name') }} | {{ __('common.description') }} | Per torrent per hour | {{ __('torrent.torrents') }} |
|---|---|---|---|
| {{ $bonEarning->name }} | {{ $bonEarning->description }} | @if ($bonEarning->operation === 'multiply') × @else + @endif {{ preg_replace('/(\.\d+?)0+$/', '$1', $bonEarning->multiplier) }} @if ($bonEarning->variable != 1) × {{ $bonEarning->variable }} @endif | {{ $bonEarning->torrents_count }} |
| {{ __('torrent.type') }} @include('livewire.includes._sort-icon', ['field' => 'type_id']) | {{ __('torrent.name') }} @include('livewire.includes._sort-icon', ['field' => 'name']) | {{ __('torrent.size') }} @include('livewire.includes._sort-icon', ['field' => 'size']) | @include('livewire.includes._sort-icon', ['field' => 'seeders']) | @include('livewire.includes._sort-icon', ['field' => 'leechers']) | @include('livewire.includes._sort-icon', ['field' => 'times_completed']) | @include('livewire.includes._sort-icon', ['field' => 'internal']) | @include('livewire.includes._sort-icon', ['field' => 'personal_release']) | @include('livewire.includes._sort-icon', ['field' => 'connectable']) | {{ __('torrent.seedtime') }} @include('livewire.includes._sort-icon', ['field' => 'seedtime']) | {{ __('torrent.age') }} @include('livewire.includes._sort-icon', ['field' => 'created_at']) | Hourly @include('livewire.includes._sort-icon', ['field' => 'hourly_earnings']) | Daily | Weekly | Monthly |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $types[$torrent->type_id] ??= \App\Models\Type::find($torrent->type_id)?->name ?? __('common.unknown') }} | {{ $torrent->name }} | {{ \App\Helpers\StringHelper::formatBytes($torrent->size) }} | {{ $torrent->seeders }} | {{ $torrent->leechers }} | {{ $torrent->times_completed }} | @if ($torrent->internal) @else - @endif | @if ($torrent->personal_release) @else - @endif | @if ($torrent->connectable) @else - @endif | {{ \App\Helpers\StringHelper::timeElapsed($torrent->seedtime) }} | {{ \App\Helpers\StringHelper::timeElapsed($torrent->age) }} | {{ number_format($torrent->hourly_earnings, 4) }} | {{ number_format($torrent->hourly_earnings * 24, 4) }} | {{ number_format($torrent->hourly_earnings * 24 * 7, 4) }} | {{ number_format($torrent->hourly_earnings * 24 * 30, 4) }} |