blob: fc21aabca894a1f96b6d0ec7c4f6161cd2ed8188 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<x-layout>
<x-slot:title>Rosco and Leko</x-slot:title>
<div class="rosco-leko-gallery">
@foreach($images as $image)
<div>
<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>
|