routes.php 537 B

1234567891011121314151617181920212223
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application Routes
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here is the "definition", or the public API, of your application.
  9. |
  10. | To add functionality to your application, you add to the array located
  11. | in this file. It's a breeze. Just tell Laravel the request method and
  12. | URI a function should respond to.
  13. |
  14. */
  15. 'GET /' => function()
  16. {
  17. return View::make('home/index');
  18. },
  19. );