@php $title = $album->title; $description = $album->description ?: "Album photographique — {$album->title}"; @endphp

{{ $album->title }}

@if ($album->description)

{{ $album->description }}

@endif

{{ $album->media->count() }} photo(s)

@foreach ($album->media as $item) @endforeach
@if ($album->media->isEmpty())

Aucune photo publiée dans cet album pour le moment.

@endif