aboutsummaryrefslogtreecommitdiff
path: root/resources/views/pandamonium.blade.php
diff options
context:
space:
mode:
authorRoscoeDaWah <roscoe@wah.moe>2025-02-08 00:36:23 +0000
committerRoscoeDaWah <roscoe@wah.moe>2025-02-08 00:36:23 +0000
commit93a2b9c0b5991b9418c24a41ca8fd6e481a36597 (patch)
treec2d4b4d5f8465068cf9646ba3afd534604e6ce2b /resources/views/pandamonium.blade.php
parentcaba5377e3e22acb66dcb7a88487b5754e36d648 (diff)
THREE OF THEM!
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>