|
{{ $resurrection->torrent->name }}
|
{{ App\Helpers\StringHelper::formatBytes($resurrection->torrent->size) }}
|
$resurrection->seeding,
])
@if ($resurrection->seeding)
title="{{ __('torrent.currently-seeding') }}"
@endif
>
{{ $resurrection->torrent->seeders }}
|
$resurrection->leeching,
])
@if ($resurrection->leeching)
title="{{ __('torrent.currently-leeching') }}"
@endif
>
{{ $resurrection->torrent->leechers }}
|
$resurrection->completed,
])
@if ($resurrection->completed)
title="{{ __('torrent.completed') }}"
@endif
>
{{ $resurrection->torrent->times_completed }}
|
{{ $resurrection->created_at->diffForHumans() }}
|
@php
$history = App\Models\History::select(['seedtime'])
->where('user_id', '=', $user->id)
->where('torrent_id', '=', $resurrection->torrent_id)
->first();
@endphp
{{ empty($history) ? '0' : App\Helpers\StringHelper::timeElapsed($history->seedtime) }}
|
{{ App\Helpers\StringHelper::timeElapsed($resurrection->seedtime) }}
|
@if ($resurrection->rewarded)
@else
@endif
|
|
@endforeach