group(function () { Route::match(["get", "post"], '/ueditor', [CommonController::class, "upload"]); }); //微信转账 Route::prefix("transfer")->group(function () { //saas端提现审核 Route::put('saas/withdraw/{id}/audit/transfer', [EarningController::class, "auditWithdraw"])->where('id', '[0-9]+'); }); Route::get("test", [Controller::class, "test"]);