routes.php 639 B

12345678910111213141516171819202122232425
  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. | It's a breeze. Simply tell Laravel the request URIs it should respond to.
  12. |
  13. | Need more breathing room? Organize your routes in their own directory.
  14. | Here's how: http://laravel.com/docs/start/routes#organize
  15. |
  16. */
  17. 'GET /' => function()
  18. {
  19. return View::make('home/index');
  20. },
  21. );