Various new stuff.

This commit is contained in:
James Cole
2014-06-28 09:57:17 +02:00
parent f4194368c9
commit a3a30bd5e1
9 changed files with 15 additions and 113 deletions

View File

@@ -2,22 +2,10 @@
class HomeController extends BaseController {
/*
|--------------------------------------------------------------------------
| Default Home Controller
|--------------------------------------------------------------------------
|
| You may wish to use controllers instead of, or in addition to, Closure
| based routes. That's great! Here is an example controller method to
| get you started. To route to this controller, just add the route:
|
| Route::get('/', 'HomeController@showWelcome');
|
*/
public function showWelcome()
public function index()
{
return View::make('hello');
return View::make('index');
}
}