2024-12-07 01:11:00 +00:00
|
|
|
<x-layout>
|
2025-01-16 19:54:20 +00:00
|
|
|
<x-slot:title>Rosco and Leko</x-slot:title>
|
|
|
|
<div class="rosco-leko-gallery">
|
2024-12-07 01:11:00 +00:00
|
|
|
@foreach($images as $image)
|
2025-01-16 19:54:20 +00:00
|
|
|
<div>
|
2024-12-07 01:11:00 +00:00
|
|
|
<img src="{{ $image["path"] }}" @if(isset($image["description"])) alt="{{ $image["description"] }}" @endif>
|
|
|
|
@if(isset($image["description"]))
|
|
|
|
<p>{{$image["description"]}}</p>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
</x-layout>
|