home.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. class Home_Controller extends Controller {
  3. /*
  4. |--------------------------------------------------------------------------
  5. | The Default Controller
  6. |--------------------------------------------------------------------------
  7. |
  8. | Instead of using RESTful routes and anonymous functions, you may wish to
  9. | use controllers to organize your application API. You'll love them.
  10. |
  11. | To start using this controller, simply remove the default route from the
  12. | application "routes.php" file. Laravel is smart enough to find this
  13. | controller and call the default method, which is "get_index".
  14. |
  15. | Just like routes, controllers are also RESTful by default. Each function
  16. | is prefixed with the HTTP verb it responds to, allowing you to quickly
  17. | build beautiful RESTful applications.
  18. |
  19. | This controller responds to URIs beginning with "home", and it also
  20. | serves as the default controller for the application, meaning it
  21. | handles requests to the root of the application.
  22. |
  23. | You can respond to GET requests to "/home/profile" like so:
  24. |
  25. | public function get_profile()
  26. | {
  27. | return "This is your profile!";
  28. | }
  29. |
  30. | Any extra segments are passed to the method as parameters:
  31. |
  32. | public function get_profile($id)
  33. | {
  34. | return "This is the profile for user {$id}.";
  35. | }
  36. |
  37. */
  38. public function get_index()
  39. {
  40. return View::make('home.index');
  41. }
  42. }