diff --git a/app/Http/Controllers/RoscoLekoController.php b/app/Http/Controllers/RoscoLekoController.php
index 7058a26..7244ffc 100644
--- a/app/Http/Controllers/RoscoLekoController.php
+++ b/app/Http/Controllers/RoscoLekoController.php
@@ -8,7 +8,7 @@
class RoscoLekoController extends Controller {
public function getImages(): array {
$images = [];
- foreach (File::glob(public_path('images/rosco-leko').'/*') as $path) {
+ foreach (File::glob(public_path('images/pandamonium').'/*') as $path) {
$image_data = [];
try {
$exif = exif_read_data($path);
@@ -41,7 +41,7 @@ public function getImages(): array {
* @return View
*/
public function show(): View {
- return view('rosco-leko', [
+ return view('pandamonium', [
'images' => $this->getImages(),
]);
}
diff --git a/config/app.php b/config/app.php
index 92bec1a..06d71bb 100644
--- a/config/app.php
+++ b/config/app.php
@@ -4,8 +4,8 @@
use Illuminate\Support\ServiceProvider;
return [
- 'name' => env('APP_NAME', 'diskfloppy.me'),
- 'version' => '2025.01.22',
+ 'name' => env('APP_NAME', 'wah.moe'),
+ 'version' => '2025.02.08',
'env' => env('APP_ENV', 'production'),
'debug' => (bool) env('APP_DEBUG', false),
'url' => env('APP_URL', 'http://localhost'),
diff --git a/public/images/rosco-leko/filters.jpg b/public/images/pandamonium/filters.jpg
similarity index 100%
rename from public/images/rosco-leko/filters.jpg
rename to public/images/pandamonium/filters.jpg
diff --git a/public/images/rosco-leko/gel-drawer.jpg b/public/images/pandamonium/gel-drawer.jpg
similarity index 100%
rename from public/images/rosco-leko/gel-drawer.jpg
rename to public/images/pandamonium/gel-drawer.jpg
diff --git a/public/images/rosco-leko/lxdesk.jpg b/public/images/pandamonium/lxdesk.jpg
similarity index 100%
rename from public/images/rosco-leko/lxdesk.jpg
rename to public/images/pandamonium/lxdesk.jpg
diff --git a/public/images/rosco-leko/pa_meister.jpg b/public/images/pandamonium/pa_meister.jpg
similarity index 100%
rename from public/images/rosco-leko/pa_meister.jpg
rename to public/images/pandamonium/pa_meister.jpg
diff --git a/public/images/rosco-leko/projectionist.jpg b/public/images/pandamonium/projectionist.jpg
similarity index 100%
rename from public/images/rosco-leko/projectionist.jpg
rename to public/images/pandamonium/projectionist.jpg
diff --git a/public/images/rosco-leko/technician.jpg b/public/images/pandamonium/technician.jpg
similarity index 100%
rename from public/images/rosco-leko/technician.jpg
rename to public/images/pandamonium/technician.jpg
diff --git a/public/images/pandamonium/three-of-them.jpg b/public/images/pandamonium/three-of-them.jpg
new file mode 100644
index 0000000..1f7eee0
Binary files /dev/null and b/public/images/pandamonium/three-of-them.jpg differ
diff --git a/public/images/rosco-leko/two-of-them.jpg b/public/images/pandamonium/two-of-them.jpg
similarity index 100%
rename from public/images/rosco-leko/two-of-them.jpg
rename to public/images/pandamonium/two-of-them.jpg
diff --git a/resources/views/components/navigation.blade.php b/resources/views/components/navigation.blade.php
index 5fa3f28..d7bf7e0 100644
--- a/resources/views/components/navigation.blade.php
+++ b/resources/views/components/navigation.blade.php
@@ -7,5 +7,5 @@
bookmarks |
guestbook |
music |
- rosco & leko
+ pandamonium
diff --git a/resources/views/rosco-leko.blade.php b/resources/views/pandamonium.blade.php
similarity index 100%
rename from resources/views/rosco-leko.blade.php
rename to resources/views/pandamonium.blade.php
diff --git a/routes/web.php b/routes/web.php
index 7f32c3d..18c0440 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -22,7 +22,7 @@
Route::get('/bookmarks', [BookmarksController::class, 'show']);
Route::get('/guestbook', [GuestbookController::class, 'show']);
Route::get('/music', [MusicController::class, 'show']);
-Route::get('/rosco-leko', [RoscoLekoController::class, 'show']);
+Route::get('/pandamonium', [RoscoLekoController::class, 'show']);
Route::post('/guestbook', [GuestbookController::class, 'addEntry'])
->middleware('validator')
->middleware('rate_limit');