diff options
author | floppydiskette <floppydisk@hyprcat.net> | 2024-09-13 12:58:12 +0100 |
---|---|---|
committer | floppydiskette <floppydisk@hyprcat.net> | 2024-09-13 12:59:16 +0100 |
commit | 2c3400fb4f5a22951d42f286975201bf817d7883 (patch) | |
tree | a08b06f5f6d5df4f6774da7645d85418609a4cf2 /routes/web.php | |
parent | d8915dcca4d9752f6f254e86afa39ef7f83617d1 (diff) |
wronglucky
Diffstat (limited to 'routes/web.php')
-rw-r--r-- | routes/web.php | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/routes/web.php b/routes/web.php deleted file mode 100644 index 0b10251..0000000 --- a/routes/web.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -use App\Http\Controllers\BookmarksController; -use App\Http\Controllers\CalculatorsController; -use App\Http\Controllers\ComputersController; -use App\Http\Controllers\GuestbookController; -use App\Http\Controllers\HomeController; -use App\Http\Controllers\MusicController; -use Illuminate\Support\Facades\Route; - -/* -|-------------------------------------------------------------------------- -| Web Routes -|-------------------------------------------------------------------------- -| -| Here is where you can register web routes for your application. These -| routes are loaded by the RouteServiceProvider and all of them will -| be assigned to the "web" middleware group. Make something great! -| -*/ - -// Run the PageView middleware for *all* public GET routes -Route::get('/', [HomeController::class, 'show']); -Route::get('/bookmarks', [BookmarksController::class, 'show']); -Route::get('/guestbook', [GuestbookController::class, 'show']); -Route::get('/calculators', [CalculatorsController::class, 'show']); -Route::get('/computers', [ComputersController::class, 'show']); -Route::get('/music', [MusicController::class, 'show']); -Route::post('/guestbook', [GuestbookController::class, 'addEntry']) - ->middleware('rate_limit'); |