routes.php 692 B

1234567891011121314151617181920212223242526
  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 Form::input('email', 'email', '', array('required', 'class' => 'awesome'));
  20. return View::make('home/index');
  21. },
  22. );