Basic output of incidents

This commit is contained in:
James Brooks
2014-11-16 23:17:34 +00:00
parent ba6892e858
commit fab38a766d
6 changed files with 44 additions and 23 deletions

View File

@@ -1,23 +1,7 @@
<?php
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()
{
return View::make('hello');
class HomeController extends BaseController {
public function showIndex() {
return View::make('index');
}
}
}