web.php 489 B

123456789101112131415161718
  1. <?php
  2. use Illuminate\Support\Facades\Route;
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Web Routes
  6. |--------------------------------------------------------------------------
  7. |
  8. | This file is where you may define all of the routes that are handled
  9. | by your application. Just tell Laravel the URIs it should respond
  10. | to using a given Closure or controller and enjoy the fresh air.
  11. |
  12. */
  13. Route::get('/', function () {
  14. return view('welcome');
  15. });