web.php 741 B

1234567891011121314151617181920212223242526
  1. <?php
  2. use Illuminate\Support\Facades\Route;
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Web Routes
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here is where you can register web routes for your application. These
  9. | routes are loaded by the RouteServiceProvider within a group which
  10. | contains the "web" middleware group. Now create something great!
  11. |
  12. */
  13. Route::redirect('/', '/app/pcdl/index.php');
  14. Route::redirect('/app', '/app/pcdl/index.php');
  15. Route::redirect('/app/pcdl', '/app/pcdl/index.php');
  16. Route::get('/user/{id}', function ($id) {
  17. return 'User '.$id;
  18. });
  19. Route::get('/home/{name}', function ($name) {
  20. return view('home', ['name' => $name]);
  21. });