diff options
Diffstat (limited to 'routes')
-rw-r--r-- | routes/web.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/routes/web.php b/routes/web.php index 0b10251..af97484 100644 --- a/routes/web.php +++ b/routes/web.php @@ -6,6 +6,7 @@ use App\Http\Controllers\ComputersController; use App\Http\Controllers\GuestbookController; use App\Http\Controllers\HomeController; use App\Http\Controllers\MusicController; +use App\Http\Controllers\PrivacyController; use Illuminate\Support\Facades\Route; /* @@ -26,5 +27,6 @@ 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::get('/privacy', [PrivacyController::class, 'show']); Route::post('/guestbook', [GuestbookController::class, 'addEntry']) ->middleware('rate_limit'); |