@extends('hello') @section('content')
@if(!is_null($film->gesehen))
Gesehen am {{ $film->gesehen }}
@else
Nicht gesehen
@endif
{{ $film->name }} Poster
Originaltitel
{{ $tfilm['original_title'] }}
Erschienen
{{ $tfilm['release_date']}} - @foreach($tfilm['production_countries'] as $pc) {{$pc['iso_3166_1']}} @endforeach @foreach($tfilm['production_companies'] as $pc) - {{$pc['name']}} @endforeach
Genre
@foreach($tfilm['genres'] as $g) {{$g['name']}} @endforeach
Bewertung
{{ $tfilm['vote_average']}} von 10
@for($i = 0; $i < 3 && $i < count($cast['crew']); $i++)
{{$cast['crew'][$i]['job']}}
{{$cast['crew'][$i]['name']}}
@endfor

Inhalt
{{ $tfilm['overview'] }}
@for($i = 0; $i < 10 && $i < count($cast['cast']); $i++)
{{$cast['cast'][$i]['name']}}

{{$cast['cast'][$i]['name']}}

{{$cast['cast'][$i]['character']}}
@if($i % 2 == 1)
@endif @endfor
@foreach($trail['youtube'] as $yt) @endforeach

@if($votes > 0)

Abstimmung

Insgesamt haben {{$votes}} Personen abgestimmt. {{$vposi}} davon waren dafür.

{{$vposi}} von {{$votes}} (dafür)
{{ $votes - $vposi}} von {{ $votes }} Complete (dagegen)

@endif

Kommentare

Melde Dich an, um diesen Film zu kommentieren.

@foreach($comments as $comment)
autor->email ) ) ) . "?s=40" }}" alt="{{ $comment->autor->name }}">

{{ $comment->autor->name }} {{$comment->updated_at}}

{{$comment->text}}
@endforeach @stop @section('title') {{ $film->name }} ~ @stop