routes.php 1017 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Application Routes
  5. |--------------------------------------------------------------------------
  6. |
  7. | Here is where you can register all of the routes for an application.
  8. | It's a breeze. Simply tell Laravel the URIs it should respond to
  9. | and give it the Closure to execute when that URI is requested.
  10. |
  11. */
  12. $router->get('/', 'HomeController@index');
  13. /*
  14. |--------------------------------------------------------------------------
  15. | Authentication & Password Reset Controllers
  16. |--------------------------------------------------------------------------
  17. |
  18. | These two controllers handle the authentication of the users of your
  19. | application, as well as the functions necessary for resetting the
  20. | passwords for your users. You may modify or remove these files
  21. | if you wish. They just give you a convenient starting point.
  22. |
  23. */
  24. $router->controller('auth', 'AuthController');
  25. $router->controller('password', 'PasswordController');