2014-08-20 00:10:30 -05:00
|
|
|
<?php namespace App\Http\Controllers;
|
2013-01-11 15:14:07 -06:00
|
|
|
|
2014-10-15 08:34:33 -05:00
|
|
|
class HomeController extends Controller {
|
2013-01-11 15:14:07 -06:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
2014-11-02 10:02:20 -06:00
|
|
|
| Default Home Controller
|
2013-01-11 15:14:07 -06:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
2014-11-02 10:02:20 -06:00
|
|
|
| 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:
|
|
|
|
|
|
|
|
|
|
|
| $router->get('/', 'HomeController@showWelcome');
|
2013-01-11 15:14:07 -06:00
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
2014-08-01 23:51:30 -05:00
|
|
|
public function index()
|
2013-01-11 15:14:07 -06:00
|
|
|
{
|
2014-08-20 00:10:30 -05:00
|
|
|
return view('hello');
|
2013-01-11 15:14:07 -06:00
|
|
|
}
|
|
|
|
|
|
2014-03-15 10:14:55 +00:00
|
|
|
}
|