@extends('layout.default') @section('title') {{ __('common.pending-torrents') }} - {{ config('other.title') }} @endsection @section('meta') @endsection @section('breadcrumbs') @endsection @section('main')

{{ __('common.pending-torrents') }}

@foreach ($torrents as $torrent) @endforeach
{{ __('torrent.name') }} {{ __('torrent.category') }} {{ __('torrent.type') }} {{ __('torrent.resolution') }} {{ __('torrent.size') }} {{ __('torrent.created_at') }} {{ __('torrent.status') }}
{{ $torrent->name }} {{ $torrent->category->name }} {{ $torrent->type->name }} {{ $torrent->resolution->name ?? 'No Res' }} {{ $torrent->getSize() }} {{ $torrent->created_at->diffForHumans() }} @switch($torrent->status) @case(\App\Models\Torrent::PENDING) {{ __('torrent.pending') }} @break @case(\App\Models\Torrent::POSTPONED) {{ __('torrent.postponed') }} @break @default {{ __('common.unknown') }} @endswitch
@endsection