@section('title') Torrent downloads - {{ __('staff.staff-dashboard') }} - {{ config('other.title') }} @endsection @section('meta') @endsection @section('breadcrumbs') @endsection @section('page', 'page__staff-torrent-download--index')

{{ __('common.search') }}

Torrent downloads

Loading...
@switch($this->groupBy) @case('user_id') @foreach ($torrentDownloads as $torrentDownload) @endforeach
User @include('livewire.includes._sort-icon', ['field' => 'user_id']) Download count @include('livewire.includes._sort-icon', ['field' => 'download_count']) Distinct torrent count @include('livewire.includes._sort-icon', ['field' => 'distinct_torrent_count']) First downloaded At @include('livewire.includes._sort-icon', ['field' => 'created_at_min']) Last downloaded At @include('livewire.includes._sort-icon', ['field' => 'created_at_max'])
{{ $torrentDownload->download_count }} {{ $torrentDownload->distinct_torrent_count }}
@break @default @foreach ($torrentDownloads as $torrentDownload) @endforeach
ID @include('livewire.includes._sort-icon', ['field' => 'id']) User @include('livewire.includes._sort-icon', ['field' => 'user_id']) Torrent ID @include('livewire.includes._sort-icon', ['field' => 'torrent_id']) Torrent @include('livewire.includes._sort-icon', ['field' => 'torrent_id']) Type @include('livewire.includes._sort-icon', ['field' => 'type']) {{ __('common.created_at') }} @include('livewire.includes._sort-icon', ['field' => 'created_at'])
{{ $torrentDownload->id }} {{ $torrentDownload->torrent?->id ?? 'Not found' }} @if ($torrentDownload->torrent !== null) {{ $torrentDownload->torrent->name ?? 'Not found' }} @else Not found @endif {{ $torrentDownload->type }}
@endswitch
{{ $torrentDownloads->links('partials.pagination') }}