Manage Photos

@if (!$reordering) @else
@endif
@if ($isLoading)
@elseif ($error) @elseif (count($photos) === 0)

No photos yet

Upload photos to showcase this park.

@else
@foreach ($photoOrder as $index => $photoId) @php $photo = collect($photos)->firstWhere('id', $photoId); @endphp @if ($photo)
{{ $photo['alt_text'] ?? $photo['title'] ?? 'Park photo' }}

{{ $photo['title'] ?? 'Untitled Photo' }}

@if ($photo['description'])

{{ $photo['description'] }}

@endif
@if ($photo['is_featured'])
Featured
@endif @if ($reordering)
@endif
@endif @endforeach
@endif