user81411
0
Q:

laravel route match

use App\Http\Controllers\UserController;

Route::get('/user', [UserController::class, 'index']);
1
Route::match(['get', 'post'], '/', function () {
    //
});

Route::any('/', function () {
    //
});
1
Route::view('/welcome', 'welcome');
Route::view('/welcome', 'welcome', ['name' => 'Taylor']);
0

New to Communities?

Join the community