routes.php 1.0 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 of routes located in this file.
  10. |
  11. | Simply tell Laravel the HTTP verbs and URIs it should respond to. It's a
  12. | piece of cake to create beautiful applications using the elegant RESTful
  13. | routing available in Laravel.
  14. |
  15. | Let's 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 (:num) or (:any):
  30. |
  31. | 'GET /hello/(:any)' => function($name)
  32. | {
  33. | return "Welcome, $name.";
  34. | }
  35. |
  36. */
  37. 'GET /' => function()
  38. {
  39. return View::make('home.index');
  40. },
  41. );