@extends('layout.with-main') @section('title') {{ $torrent->name }} - {{ __('torrent.torrents') }} - {{ config('other.title') }} @endsection @section('meta') @endsection @section('breadcrumbs') @endsection @section('page', 'page__torrent--show') @section('main') @switch(true) @case($torrent->category->movie_meta) @include('torrent.partials.movie-meta', ['category' => $torrent->category, 'meta' => $torrent->movie, 'tmdb' => $torrent->tmdb_movie_id]) @break @case($torrent->category->tv_meta) @include('torrent.partials.tv-meta', ['category' => $torrent->category, 'meta' => $torrent->tv, 'tmdb' => $torrent->tmdb_tv_id]) @break @case($torrent->category->game_meta) @include('torrent.partials.game-meta', ['category' => $torrent->category, 'meta' => $torrent->game, 'igdb' => $torrent->igdb]) @break @default @include('torrent.partials.no-meta', ['category' => $torrent->category]) @break @endswitch

{{ $torrent->name }}

@include('torrent.partials.general') @include('torrent.partials.buttons') {{-- Tools block --}} @if (auth()->user()->internals()->exists() ||auth()->user()->group->is_editor ||auth()->user()->group->is_modo ||(auth()->id() === $torrent->user_id && $canEdit)) @include('torrent.partials.tools') @endif {{-- Audits, reports, downloads block --}} @if (auth()->user()->group->is_modo) @include('torrent.partials.audits') @include('torrent.partials.reports') @include('torrent.partials.downloads') @endif {{-- MediaInfo block --}} @if ($torrent->mediainfo !== null) @include('torrent.partials.mediainfo') @endif {{-- BDInfo block --}} @if ($torrent->bdinfo !== null) @include('torrent.partials.bdinfo') @endif {{-- Description block --}} @include('torrent.partials.description') {{-- Subtitles block --}} @if ($torrent->category->movie_meta || $torrent->category->tv_meta) @include('torrent.partials.subtitles') @endif {{-- Extra meta block --}} @include('torrent.partials.extra-meta', ['meta' => $torrent->movie ?? $torrent->tv ?? $torrent->game ?? null]) {{-- Comments block --}} @if ($torrent->status === \App\Enums\ModerationStatus::APPROVED) @include('torrent.partials.comments') @endif @endsection