routes.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. | It's easy to 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. */
  37. 'GET /' => function($laravel)
  38. {
  39. return View::make('home.index');
  40. },
  41. );