This commit is contained in:
2020-11-09 23:40:57 +01:00
parent aaae1158e3
commit 16f2077fa5
3 changed files with 16 additions and 0 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');
}
}