{{ __($title) }}

@if($title == 'Gesehene Filme') → Abgelehnte Filme @else → Gesehene Filme @endif
@foreach ($films as $film)
{{$film->name}}
@php $stimme = is_null(auth()->user()) ? null : $film->votes()->where('user', auth()->user()->id)->first(); @endphp @if (!is_null($stimme) && $stimme->vote == 0) · @elseif (!is_null($stimme) && $stimme->vote == 1) · @endif {{ $film->comments()->count() }} @if($film->getBewertung() > 0) · {{ number_format($film->getBewertung(), 1, '.', '') }} @endif
@php $date = $film->seen !== null ? $film->seen : $film->rejected @endphp
{{ \Carbon\Carbon::parse($date)->format('d.m.Y') }}
@endforeach
{{ $films->links() }}
Du bist nicht dafür · Du bist dafür · Anzahl Kommentare · Bewertung