{{ $active->name }}
|
{{ $active->seeders }}
|
{{ $active->leechers }}
|
{{ $active->times_completed }}
|
{{ $active->agent ?: __('common.unknown') }}
|
{{ $active->ip ?: __('common.unknown') }}
|
{{ $active->port ?: __('common.unknown') }}
|
@if (\config('announce.connectable_check'))
@php
$connectable = null;
if (config('announce.external_tracker.is_enabled')) {
$connectable = $active->connectable;
} elseif (cache()->has('peers:connectable:' . $active->ip . '-' . $active->port . '-' . $active->agent)) {
$connectable = cache()->get('peers:connectable:' . $active->ip . '-' . $active->port . '-' . $active->agent);
}
@endphp
@if ($connectable === null)
@else
@if ($connectable)
@else
@endif
@endif
|
@endif
@if ($active->active)
@if ($active->seeder)
@else
@endif
@else
@endif
|
@if ($active->visible)
@else
@endif
|
{{ App\Helpers\StringHelper::formatBytes($active->size) }}
|
{{ App\Helpers\StringHelper::formatBytes($active->uploaded, 2) }}
|
{{ App\Helpers\StringHelper::formatBytes($active->downloaded, 2) }}
|
{{ App\Helpers\StringHelper::formatBytes($active->left, 2) }}
|
{{ $active->progress < 100 ? \floor($active->progress * 10000) / 100 : INF }}%
|
@if ($showMorePrecision)
|
|
@else
|
|
@endif
@endforeach