wesmiler 3 달 전
부모
커밋
b28c2ec370
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      app/Http/Controllers/Admin/WithdrawController.php

+ 2 - 1
app/Http/Controllers/Admin/WithdrawController.php

@@ -72,6 +72,7 @@ class WithdrawController extends Backend
      * @return mixed
      */
     public function confirm(){
-        return $this->service->confirm();
+        $params =request()->all();
+        return $this->service->confirm($this->userId,$params);
     }
 }