routes.php 725 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Application Routes
  5. |--------------------------------------------------------------------------
  6. |
  7. | Here is where you can register all of the routes in an application.
  8. | It's a breeze. Simply tell Laravel the URIs it should respond to
  9. | and give it the controller to call when that URI is requested.
  10. |
  11. */
  12. Route::get('/', function () {
  13. return view('welcome');
  14. });
  15. /*
  16. | This route group applies the "web" middleware group to every route
  17. | it contains. The "web" middleware group is defined in your HTTP
  18. | kernel and includes session state, CSRF protection, and more.
  19. */
  20. Route::group(['middleware' => 'web'], function () {
  21. //
  22. });