Ken 2 hónapja
szülő
commit
71dff5ee42
1 módosított fájl, 1 hozzáadás és 3 törlés
  1. 1 3
      app/Services/WithdrawService.php

+ 1 - 3
app/Services/WithdrawService.php

@@ -548,12 +548,10 @@ class WithdrawService
 
 
         Cache::put("{$chatId}_WITHDRAW_MONEY", $amount);
-
-
         $list = Bank::where('member_id', $chatId)->get();
         $keyboard = [];
         foreach ($list as $item) {
-            $keyboard[] = [['text' => $item->alias, 'callback_data' => "withdrawAddress@@choose_qb_{$item->id}"]];
+            $keyboard[] = [['text' => $item->bank_name, 'callback_data' => "withdrawAddress@@choose_qb_{$item->id}"]];
         }
         $keyboard[] = [
             ['text' => '🏠 银行卡管理', 'callback_data' => "withdraw@@address"],