| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | <?phpclass Home_Controller extends Controller {	/*	|--------------------------------------------------------------------------	| The Default Controller	|--------------------------------------------------------------------------	|	| Instead of using RESTful routes and anonymous functions, you may wish to	| use controllers to organize your application API. You'll love them.	|	| To start using this controller, simply remove the default route from the	| application "routes.php" file. Laravel is smart enough to find this	| controller and call the default method, which is "get_index".	|	| Just like routes, controllers are also RESTful by default. Each method	| is prefixed with the HTTP verb it responds to, allowing you to quickly	| build beautiful RESTful applications.	|	| This controller responds to URIs beginning with "home", and it also	| serves as the default controller for the application, meaning it	| handles requests to the root of the application.	|	| You can respond to GET requests to "/home/profile" like so:	|	|		public function get_profile()	|		{	|			return "This is your profile!";	|		}	|	| Any extra segments are passed to the method as parameters:	|	|		public function get_profile($id)	|		{	|			return "This is the profile for user {$id}.";	|		}	|	*/	public function get_index()	{		return View::make('home.index');	}}
 |