fix Index route in routes\web.php

This commit is contained in:
Tom K.H. Lin 2018-08-05 18:16:01 +08:00
parent b317a26500
commit 2a9054c9d8

View File

@ -16,7 +16,7 @@
// });
// 首頁url
Route::get('/', 'HomeController@index')->name('home');
Route::get('/', 'Home\HomeController@index')->name('home');
// 登入相關的
Auth::routes();