blob: 70fd27b09350b149af67025259aaac38bc4f270e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<x-layout>
<x-slot:title>Absolute Pandamonium!</x-slot:title>
<x-slot:cardImage>{{ asset('/images/embeds/pandamonium.png') }}</x-slot:cardImage>
<x-slot:cardDescription>Follow the adventures of Rosco, Leko, Viz and AJ!</x-slot:cardDescription>
<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>
|