THREE OF THEM!

This commit is contained in:
Roscoe 2025-02-08 00:36:23 +00:00
parent caba5377e3
commit 93a2b9c0b5
Signed by: RoscoeDaWah
SSH key fingerprint: SHA256:Hqn452XQ1ETzUt/FthJu6+OFkS4NBxCv5VQSEvuk7CE
13 changed files with 6 additions and 6 deletions

View file

@ -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(),
]);
}

View file

@ -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'),

View file

Before

Width:  |  Height:  |  Size: 538 KiB

After

Width:  |  Height:  |  Size: 538 KiB

View file

Before

Width:  |  Height:  |  Size: 587 KiB

After

Width:  |  Height:  |  Size: 587 KiB

View file

Before

Width:  |  Height:  |  Size: 746 KiB

After

Width:  |  Height:  |  Size: 746 KiB

View file

Before

Width:  |  Height:  |  Size: 6.6 MiB

After

Width:  |  Height:  |  Size: 6.6 MiB

View file

Before

Width:  |  Height:  |  Size: 422 KiB

After

Width:  |  Height:  |  Size: 422 KiB

View file

Before

Width:  |  Height:  |  Size: 2 MiB

After

Width:  |  Height:  |  Size: 2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 571 KiB

View file

Before

Width:  |  Height:  |  Size: 2.4 MiB

After

Width:  |  Height:  |  Size: 2.4 MiB

View file

@ -7,5 +7,5 @@
<a href="/bookmarks">bookmarks</a> |
<a href="/guestbook">guestbook</a> |
<a href="/music">music</a> |
<a href="/rosco-leko">rosco &amp; leko</a>
<a href="/pandamonium">pandamonium</a>
</nav>

View file

@ -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');