routes.php 547 B

123456789101112131415161718192021222324
  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. $this->
  18. return View::make('home/index');
  19. },
  20. );