{{-- Image gallery manager. Variables: $property (Property model) --}} @php $images = $property->images()->get(); @endphp
Image Gallery
{{ $images->count() }} {{ Str::plural('photo', $images->count()) }}
{{-- Thumbnail grid --}}
@foreach($images as $image)
{{ $image->original_name }} @if($loop->first) Cover @endif @if(auth()->user()->isAdmin()) @endif
@endforeach @if($images->isEmpty())

No images uploaded yet.

@endif
{{-- Upload button --}}
JPG, PNG, WEBP · max 20 MB each Uploading…
@push('scripts') @endpush