|
@@ -167,7 +167,7 @@ Route::group(
|
|
|
// 提现记录管理
|
|
|
Route::group(['prefix' => 'wallet'], function () {
|
|
|
Route::group(['prefix' => 'withdraw'], function () {
|
|
|
- Route::post('/{id}/audit', [\App\Http\Controllers\Admin\WalletWithdrawRecordController::class, 'audit'])->name('admin.wallet.withdraw.audit');
|
|
|
+ Route::post('/{id}/audit', [\App\Http\Controllers\Admin\WalletWithdrawRecordController::class, 'audit']);
|
|
|
});
|
|
|
});
|
|
|
}
|
|
@@ -293,7 +293,7 @@ Route::group([
|
|
|
// 提现记录管理
|
|
|
Route::group(['prefix' => 'wallet'], function () {
|
|
|
Route::group(['prefix' => 'withdraw'], function () {
|
|
|
- Route::post('/{id}/audit', [\App\Http\Controllers\Admin\WalletWithdrawRecordController::class, 'audit'])->name('admin.wallet.withdraw.audit');
|
|
|
+ Route::post('/{id}/audit', [\App\Http\Controllers\Admin\WalletWithdrawRecordController::class, 'audit']);
|
|
|
});
|
|
|
});
|
|
|
});
|