| 1234567891011121314151617181920212223 | <?phpclass HomeController extends Controller {	/*	|--------------------------------------------------------------------------	| 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@index');	|	*/	public function index()	{		return View::make('hello');	}}
 |