@php $links = $film ->links() ->where('shownOnFT', '=', '1') ->get(); $clips = $film ->clips() ->where('shownOnFT', '=', '1') ->get(); @endphp @if (count($links) || count($clips))
@foreach ($links as $item)
{{ ucfirst($item->description) }} @if ($item->pwd_access) - mot de passe : {{ $item->pwd_access }} @endif
{{ $item->url }}
@endforeach @foreach ($clips as $item)
{{ ucfirst($item->description) }} @if ($item->pwd_access) - mot de passe : {{ $item->pwd_access }} @endif
{{ $item->url }}
@endforeach
@endif