diff --git a/routes/web.php b/routes/web.php index 15508ce8d..666486c3b 100644 --- a/routes/web.php +++ b/routes/web.php @@ -14,7 +14,7 @@ */ // Task 1: point the main "/" URL to the HomeController method "index" -// Put one code line here below +Route::get('/', [HomeController::class, 'index') // Task 2: point the GET URL "/user/[name]" to the UserController method "show"