{{ __('request.requests') }}

{{ __('request.add-request') }}
@forelse ($torrentRequests as $torrentRequest) @empty @endforelse
{{ __('common.name') }} @include('livewire.includes._sort-icon', ['field' => 'name']) {{ __('common.category') }} @include('livewire.includes._sort-icon', ['field' => 'category_id']) {{ __('common.type') }} @include('livewire.includes._sort-icon', ['field' => 'type_id']) {{ __('common.resolution') }} @include('livewire.includes._sort-icon', ['field' => 'resolution_id']) {{ __('common.author') }} @include('livewire.includes._sort-icon', ['field' => 'user_id']) @include('livewire.includes._sort-icon', ['field' => 'votes']) @include('livewire.includes._sort-icon', ['field' => 'bounty']) {{ __('common.created_at') }} @include('livewire.includes._sort-icon', ['field' => 'created_at']) {{ __('common.status') }}
{{ $torrentRequest->name }} {{ $torrentRequest->category->name }} {{ $torrentRequest->type->name }} {{ $torrentRequest->resolution->name ?? 'Unknown' }} {{ $torrentRequest->votes }} {{ $torrentRequest->comments_count }} {{ number_format($torrentRequest->bounty) }} {{ $torrentRequest->created_at->diffForHumans() }} @switch(true) @case($torrentRequest->claimed && $torrentRequest->torrent_id === null) {{ __('request.claimed') }} @break @case($torrentRequest->torrent_id !== null && $torrentRequest->approved_by === null) {{ __('request.pending') }} @break @case($torrentRequest->torrent_id === null) {{ __('request.unfilled') }} @break @default {{ __('request.filled') }} @break @endswitch
{{ __('common.no-result') }}
{{ $torrentRequests->links('partials.pagination') }}

{{ __('torrent.filters') }}

{{ __('torrent.category') }}
@foreach ($categories as $category)

@endforeach
{{ __('common.type') }}
@foreach ($types as $type)

@endforeach
{{ __('common.resolution') }}
@foreach ($resolutions as $resolution)

@endforeach
{{ __('torrent.genre') }}
@foreach ($genres as $genre)

@endforeach
Primary Language
@foreach ($primaryLanguages as $primaryLanguage)

@endforeach
{{ __('common.status') }}

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

{{ __('stat.stats') }}

{{ __('request.requests') }}:
{{ number_format($torrentRequestStat->total) }}
{{ __('request.filled') }}:
{{ number_format($torrentRequestStat->filled) }}
{{ __('request.unfilled') }}:
{{ number_format($torrentRequestStat->unfilled) }}
{{ __('request.total-bounty') }}:
{{ number_format($torrentRequestBountyStat->total) }} {{ __('bon.bon') }}
{{ __('request.bounty-claimed') }}:
{{ number_format($torrentRequestBountyStat->claimed) }} {{ __('bon.bon') }}
{{ __('request.bounty-unclaimed') }}:
{{ number_format($torrentRequestBountyStat->unclaimed) }} {{ __('bon.bon') }}