@extends('layout.with-main') @section('title') Cheated torrents - {{ __('staff.staff-dashboard') }} - {{ config('other.title') }} @endsection @section('meta') @endsection @section('breadcrumbs') @endsection @section('page', 'page__staff-cheated-torrent--index') @section('main')

Cheated torrents

@csrf @method('DELETE')
@forelse ($torrents as $torrent) @empty @endforelse
{{ __('common.name') }} {{ __('torrent.size') }} Balance Times cheated {{ __('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) }}
  • @csrf @method('DELETE')
  • No cheated torrents
    {{ $torrents->links('partials.pagination') }}
    @endsection