diff options
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'); |