THREE OF THEM!
|
@ -8,7 +8,7 @@
|
||||||
class RoscoLekoController extends Controller {
|
class RoscoLekoController extends Controller {
|
||||||
public function getImages(): array {
|
public function getImages(): array {
|
||||||
$images = [];
|
$images = [];
|
||||||
foreach (File::glob(public_path('images/rosco-leko').'/*') as $path) {
|
foreach (File::glob(public_path('images/pandamonium').'/*') as $path) {
|
||||||
$image_data = [];
|
$image_data = [];
|
||||||
try {
|
try {
|
||||||
$exif = exif_read_data($path);
|
$exif = exif_read_data($path);
|
||||||
|
@ -41,7 +41,7 @@ public function getImages(): array {
|
||||||
* @return View
|
* @return View
|
||||||
*/
|
*/
|
||||||
public function show(): View {
|
public function show(): View {
|
||||||
return view('rosco-leko', [
|
return view('pandamonium', [
|
||||||
'images' => $this->getImages(),
|
'images' => $this->getImages(),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,8 +4,8 @@
|
||||||
use Illuminate\Support\ServiceProvider;
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'name' => env('APP_NAME', 'diskfloppy.me'),
|
'name' => env('APP_NAME', 'wah.moe'),
|
||||||
'version' => '2025.01.22',
|
'version' => '2025.02.08',
|
||||||
'env' => env('APP_ENV', 'production'),
|
'env' => env('APP_ENV', 'production'),
|
||||||
'debug' => (bool) env('APP_DEBUG', false),
|
'debug' => (bool) env('APP_DEBUG', false),
|
||||||
'url' => env('APP_URL', 'http://localhost'),
|
'url' => env('APP_URL', 'http://localhost'),
|
||||||
|
|
Before Width: | Height: | Size: 538 KiB After Width: | Height: | Size: 538 KiB |
Before Width: | Height: | Size: 587 KiB After Width: | Height: | Size: 587 KiB |
Before Width: | Height: | Size: 746 KiB After Width: | Height: | Size: 746 KiB |
Before Width: | Height: | Size: 6.6 MiB After Width: | Height: | Size: 6.6 MiB |
Before Width: | Height: | Size: 422 KiB After Width: | Height: | Size: 422 KiB |
Before Width: | Height: | Size: 2 MiB After Width: | Height: | Size: 2 MiB |
BIN
public/images/pandamonium/three-of-them.jpg
Normal file
After Width: | Height: | Size: 571 KiB |
Before Width: | Height: | Size: 2.4 MiB After Width: | Height: | Size: 2.4 MiB |
|
@ -7,5 +7,5 @@
|
||||||
<a href="/bookmarks">bookmarks</a> |
|
<a href="/bookmarks">bookmarks</a> |
|
||||||
<a href="/guestbook">guestbook</a> |
|
<a href="/guestbook">guestbook</a> |
|
||||||
<a href="/music">music</a> |
|
<a href="/music">music</a> |
|
||||||
<a href="/rosco-leko">rosco & leko</a>
|
<a href="/pandamonium">pandamonium</a>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
Route::get('/bookmarks', [BookmarksController::class, 'show']);
|
Route::get('/bookmarks', [BookmarksController::class, 'show']);
|
||||||
Route::get('/guestbook', [GuestbookController::class, 'show']);
|
Route::get('/guestbook', [GuestbookController::class, 'show']);
|
||||||
Route::get('/music', [MusicController::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'])
|
Route::post('/guestbook', [GuestbookController::class, 'addEntry'])
|
||||||
->middleware('validator')
|
->middleware('validator')
|
||||||
->middleware('rate_limit');
|
->middleware('rate_limit');
|
||||||
|
|