added booking list controller

This commit is contained in:
Jack Goh
2018-06-20 22:21:45 +08:00
parent bc637adcab
commit a30fd2a0b1
13 changed files with 462 additions and 191 deletions
+28
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');
}
}