routes.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application Routes
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here is the public API of your application. To add functionality to your
  9. | application, you just add to the array located in this file.
  10. |
  11. | Simply tell Laravel the HTTP verbs and request URIs it should respond to.
  12. | You may respond to the GET, POST, PUT, or DELETE verbs. Enjoy the simplicity
  13. | and elegance of RESTful routing.
  14. |
  15. | Here is how to respond to a simple GET request to http://example.com/hello:
  16. |
  17. | 'GET /hello' => function()
  18. | {
  19. | return 'Hello World!';
  20. | }
  21. |
  22. | You can even respond to more than one URI:
  23. |
  24. | 'GET /hello, GET /world' => function()
  25. | {
  26. | return 'Hello World!';
  27. | }
  28. |
  29. | Allow URI wildcards using the (:num) or (:any) place-holders:
  30. |
  31. | 'GET /hello/(:any)' => function($name)
  32. | {
  33. | return "Welcome, $name.";
  34. | }
  35. |
  36. | Ready to learn more? Check out: http://laravel.com/docs/start/routes
  37. |
  38. */
  39. 'GET /' => function()
  40. {
  41. return View::make('home/index');
  42. },
  43. );