routes.php 607 B

12345678910111213141516171819202122232425
  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. | To learn more, check out: http://laravel.com/docs/basics/routes
  15. |
  16. */
  17. 'GET /' => function()
  18. {
  19. return View::make('home/index');
  20. },
  21. );