@extends('layout.default') @section('title') Cheated Torrents - {{ __('staff.staff-dashboard') }} - {{ config('other.title') }} @endsection @section('meta') @endsection @section('breadcrumbs') @endsection @section('page', 'page__cheated-torrents--index') @section('main')

Cheated Torrents

@csrf @method('DELETE')
@forelse ($torrents as $torrent) @empty @endforelse
{{ __('common.name') }} {{ __('torrent.size') }} Balance Times Cheated All-time Balance {{ __('torrent.uploaded') }} {{ __('common.actions') }}
{{ $torrent->name }} {{ $torrent->seeders }} {{ $torrent->leechers }} {{ $torrent->times_completed }} {{ \App\Helpers\StringHelper::formatBytes($torrent->size) }} {{ \App\Helpers\StringHelper::formatBytes($torrent->current_balance) }} {{ \round($torrent->times_cheated, 3) }} {{ \App\Helpers\StringHelper::formatBytes($torrent->balance) }}
  • @csrf @method('DELETE')
  • No cheated torrents
    {{ $torrents->links('partials.pagination') }}
    @endsection