laravel route match

35

Route::match(['get', 'post'], '/', function () {
    //
});

Route::any('/', function () {
    //
});

Comments

Submit
0 Comments