Ken 1 week ago
parent
commit
893d6c099a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Http/Controllers/admin/Wallet.php

+ 1 - 1
app/Http/Controllers/admin/Wallet.php

@@ -43,7 +43,7 @@ class Wallet extends Controller
     function getPendingTasks()
     {
         $data['recharge_task'] = Recharge::where('type', 2)
-            ->where('status', 1)->count();
+            ->where('status', 0)->count();
         $data['withdraw_task'] = Withdraw::where('status', 0)->count();
         return $this->success($data);
     }