@extends('layout.default') @section('title') {{ $user->username }} {{ __('user.wishlist') }} - {{ config('other.title') }} @endsection @section('breadcrumbs') @endsection @section('nav-tabs') @include('user.buttons.user') @endsection @section('main')

{{ __('user.wishlist') }}

@csrf
@forelse ($wishes as $wish) @empty @endforelse
{{ __('torrent.title') }} {{ __('torrent.torrents') }} {{ __('common.status') }} {{ __('common.actions') }}
@if ($wish->source === null) {{ $wish->title }} @else {{ $wish->title }} @endif @if ($wish->movie_id !== null) Torrents ({{ $wish->movie_torrents_count }}) @elseif ($wish->tv_id !== null) Torrents ({{ $wish->tv_torrents_count }}) @endif @if ($wish->movie_id !== null) @if ($wish->movie_torrents_count === 0) @else @endif @elseif ($wish->tv_id !== null) @if ($wish->tv_torrents_count === 0) @else @endif @endif
  • @csrf @method('DELETE')
  • No wishes
    {{ $wishes->links('partials.pagination') }}
    @endsection