Rename dashboard to home.

This commit is contained in:
Taylor Otwell
2014-11-24 19:33:07 -06:00
parent 7a7e366da5
commit 634c96d8d9
6 changed files with 7 additions and 18 deletions

View File

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