@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
@if($film->seen !== null)
@else
@endif
{{ \Carbon\Carbon::parse($date)->format('d.m.Y') }}