From 257998b6671f5d86fed5fe6ab42fa0cfe75fed5a Mon Sep 17 00:00:00 2001 From: Shoaib Qureshi Date: Tue, 12 Nov 2024 13:15:31 +0530 Subject: [PATCH] Update web.php --- routes/web.php | 1 + 1 file changed, 1 insertion(+) diff --git a/routes/web.php b/routes/web.php index 15508ce8d..fc8c45a34 100644 --- a/routes/web.php +++ b/routes/web.php @@ -15,6 +15,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"