From c2fa8bfe1fe893a1699042e3fff210bf36ff5952 Mon Sep 17 00:00:00 2001 From: KyPhanTrang <160887267+KyPhanTrang@users.noreply.github.com> Date: Wed, 2 Apr 2025 17:47:05 +0700 Subject: [PATCH] Update web.php --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index 15508ce8d..1a3afc862 100644 --- a/routes/web.php +++ b/routes/web.php @@ -15,7 +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" // It doesn't use Route Model Binding, it expects $name as a parameter