完成簡易首頁並加上.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

@@ -0,0 +1,13 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class HomeController extends Controller
{
public function index()
{
return view('home.index');
}
}