@section('title') Torrent Downloads - {{ __('staff.staff-dashboard') }} - {{ config('other.title') }} @endsection @section('meta') @endsection @section('breadcrumbs') @endsection

{{ __('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') }}