From 2a9054c9d8de9fcad458ba6db4c41dae5a2b1fc2 Mon Sep 17 00:00:00 2001 From: "Tom K.H. Lin" <3011850@gmail.com> Date: Sun, 5 Aug 2018 18:16:01 +0800 Subject: [PATCH] fix Index route in routes\web.php --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index d9ef34f..7d84f66 100644 --- a/routes/web.php +++ b/routes/web.php @@ -16,7 +16,7 @@ // }); // 首頁url -Route::get('/', 'HomeController@index')->name('home'); +Route::get('/', 'Home\HomeController@index')->name('home'); // 登入相關的 Auth::routes();