Created regular tests

This commit is contained in:
Gregorio Chiko Putra
2018-07-21 10:00:34 +07:00
parent 2871865e82
commit 70fe3a814c
32 changed files with 891 additions and 4 deletions

View File

@@ -0,0 +1,28 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class HomeController extends Controller
{
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('auth');
}
/**
* Show the application dashboard.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return view('home');
}
}