|
@if ($torrent->internal)
@endif
{{ $torrent->name }}
|
{{ App\Helpers\StringHelper::formatBytes($torrent->size) }}
|
$torrent->seeding,
])
@if ($torrent->seeding)
title="{{ __('torrent.currently-seeding') }}"
@endif
>
{{ $torrent->seeders }}
|
$torrent->leeching,
])
@if ($torrent->leeching)
title="{{ __('torrent.currently-leeching') }}"
@endif
>
{{ $torrent->leechers }}
|
$torrent->completed,
])
@if ($torrent->completed)
title="{{ __('torrent.completed') }}"
@endif
>
{{ $torrent->times_completed }}
|
{{ $torrent->tips_sum_bon ?? 0 }}
|
@if (config('other.thanks-system.is-enabled'))
{{ $torrent->thanks_count ?? 0 }}
|
@endif
|
@if ($torrent->personal_release)
@else
@endif
|
@switch($torrent->status)
@case(\App\Enums\ModerationStatus::PENDING)
@break
@case(\App\Enums\ModerationStatus::APPROVED)
@break
@case(\App\Enums\ModerationStatus::REJECTED)
@break
@case(\App\Enums\ModerationStatus::POSTPONED)
@break
@endswitch
|
@endforeach