aboutsummaryrefslogtreecommitdiff
path: root/resources/views/pandamonium.blade.php
diff options
context:
space:
mode:
Diffstat (limited to 'resources/views/pandamonium.blade.php')
-rw-r--r--resources/views/pandamonium.blade.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/resources/views/pandamonium.blade.php b/resources/views/pandamonium.blade.php
new file mode 100644
index 0000000..fc21aab
--- /dev/null
+++ b/resources/views/pandamonium.blade.php
@@ -0,0 +1,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>