@extends('layout.default') @section('title')
{{ __('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 |