完成簡易首頁並加上.editorconfig

This commit is contained in:
2018-07-29 14:59:42 +08:00
parent f4158b8661
commit 94390b435d
12 changed files with 57969 additions and 20 deletions

View File

@@ -10,13 +10,14 @@
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', function () {
return view('welcome');
});
// //首頁url
// Route::get('/', 'HomeController@index');
//
/* Route::get('/', function () {
return view('welcome');
}); */
//首頁url
Route::get('/', 'HomeController@index');
// //管理者相關url
// Route::group(['prefix' => 'admin'], function () {
// Route::get('/login', '');