@php($photos = $items->where('type', 'photo')->values()) @if ($items->isEmpty()) @else {{-- Masonry: field photography arrives in mixed orientations, and cropping every frame to one ratio throws away the composition. Videos keep a fixed ratio because their poster frames are uniform. --}}
@foreach ($items as $item) @if ($item->isVideo()) @if ($item->thumbnail) {{ $item->caption }} @endif @if ($item->caption) {{ $item->caption }} @else {{ __('Play video') }} @endif @else @endif @endforeach @include('public.partials.lightbox')
@endif