blob: d8627dd5b22dc295598c2ef4df995f0d8349419c [file] [log] [blame]
<?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 getIndex()
{
Session::put("nav-active", "home");
return View::make('home');
}
}
?>