Browse Source

refactor: 更新路由定义

在routes/web.php中,移除了钱包提现审核路由的命名,以简化路由定义。这些更改旨在提升代码的可维护性和清晰度。
刘学玺 2 months ago
parent
commit
d13284bd43
2 changed files with 3 additions and 2 deletions
  1. 1 0
      config/filesystems.php
  2. 2 2
      routes/web.php

+ 1 - 0
config/filesystems.php

@@ -162,6 +162,7 @@ return [
             'endpoint' => env('AWS_ENDPOINT'),
             'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
             'throw' => false,
+            'credentials' => [],
         ],
     ],
 

+ 2 - 2
routes/web.php

@@ -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']);
             });
         });
     });