{{ $tmdb->getTitle() }}

{{ $tmdb->getTagline() }}
@if (!is_null($film->seen))
Gesehen am {{ \Carbon\Carbon::parse($film->seen)->format('d.m.Y') }}
@elseif (!is_null($film->rejected))
Abgelehnt am {{ \Carbon\Carbon::parse($film->rejected)->format('d.m.Y') }}
@elseif(!is_null(auth()->user()) && auth()->user()->isAdmin())
@if(!$film->isNext())
@endif
@endif {{ $tmdb->getTitle() }} Poster
Vorgeschlagen von
{{ $film->suggester->name }}
Originaltitel
„{{ $tmdb->getOriginalTitle() }}“ ({{ $tmdb->getOriginalLanguage() }})
Laufzeit
{{ $tmdb->getRuntime() }} Minuten
Erschienen
{{ $tmdb->getReleaseDate()->format('d.m.Y') }} - @foreach ($tmdb->getProductionCountries() as $co) {{$co->getIso31661()}} @endforeach
Genre
@foreach ($tmdb->getGenres() as $genre)
{{ $genre->getName() }}
@endforeach
TMDB Bewertung
{{ $tmdb->getVoteAverage() }} von 10
@if($film->getBewertung() > 0)
Dumbo Bewertung
{{ number_format($film->getBewertung(), 2, '.', '')}} von 10
@endif
Flatrate Stream
@forelse($tmdb->getWatchProviders()->filter( function($key, $value) { return $value->getIso31661() == 'DE' && count($value->getFlatrate()) > 0; } ) as $wp) @foreach($wp->getFlatrate() as $p) @endforeach @empty
Keine
@endforelse
Kaufen / Leihen
@foreach($tmdb->getWatchProviders()->filter( function($key, $value) { return $value->getIso31661() == 'DE' && (count($value->getRent()) > 0 || count($value->getBuy()) > 0); } ) as $wp) @foreach($wp->getRent() as $p) @endforeach @endforeach
Handlung
{{ $tmdb->getOverview() }}
@foreach($tmdb->getCredits()->getCast() as $role) @if ($loop->index > 11) @break @endif
@if ($role->getProfileImage() != "") @else @endif
{{ $role->getName() }}
{{ $role->getCharacter() }}
@endforeach
@foreach ($tmdb->getVideos()->filter( function($key, $value) { return $value->getType() == "Trailer"; } ) as $vid)
{{ $vid->getName() }}
@endforeach
@php $votes = $film->votes()->count(); if(!is_null(auth()->user())) $uvote = $film->votes()->where('user', auth()->id())->first(); @endphp @if( $votes > 0 || (is_null($film->seen) && is_null($film->rejected)))

Abstimmung

@if($votes > 0)

Insgesamt haben {{ $votes }} Personen abgestimmt. {{ $film->votes->where('vote', 1)->count() }} waren dafür. @if(!is_null(auth()->user())) Du hast {!! is_null($uvote) ? 'nicht ab' : ($uvote->vote == 0 ? 'nicht dafür ' : 'dafür ') !!}gestimmt. @endif

Dafür
Nicht dafür
@foreach($film->votes->reject( function ($v) { return $v->vote == 0; }) as $vote)
{{ $vote->voter->name }}
@endforeach
@foreach($film->votes->reject( function ($v) { return $v->vote == 1; }) as $vote)
{{ $vote->voter->name }}
@endforeach
@endif @if(is_null($film->seen) && is_null($film->rejected) && !is_null(auth()->user())) @endif
@endif

Kommentare

@if (is_null(auth()->user()))

Melde Dich an, um diesen Film zu kommentieren.

@else
User Avatar
@csrf

Neuer Kommentar

@if($film->userMayEvaluate(auth()->user()->id))

Bewerten:

@endif Absenden
@endif @foreach ($film->comments()->orderBy('created_at', 'DESC')->get() as $comment)
{{ $comment->author->name }} Avatar

{{ $comment->author->name }} {{ \Carbon\Carbon::parse($comment->created_at)->format('d.m.Y H:i') }} @if ($comment->updated_at != $comment->created_at) — Zuletzt bearbeitet: {{ \Carbon\Carbon::parse($comment->updated_at)->format('d.m.Y H:i') }} @endif

@if($comment->evaluation > 0)
@for ($i = 0; $i < $comment->evaluation; $i++) @endfor ({{$comment->evaluation}})
@endif @if(!is_null(auth()->user()) && auth()->user()->id == $comment->author->id)

{{ $comment->body }}

@csrf @if($comment->evaluation > 0)

Bewerten:

@endif Speichern
@else

{{ $comment->body }}

@endif
@endforeach