|
|
@@ -215,7 +215,7 @@ class WithDrawInfoController
|
|
|
$paypass = $request->input('paypass');
|
|
|
|
|
|
|
|
|
- $PixType = $request->input('cbPixType');;
|
|
|
+ $PixType = $request->input('PixType');;
|
|
|
$BankNO = $request->input('account');
|
|
|
$AccountsBank = $request->input('account');
|
|
|
$BankUserName = $request->input('userName');
|
|
|
@@ -247,7 +247,7 @@ class WithDrawInfoController
|
|
|
return apiReturnFail(['web.bank.account_invalid_length', 'The bank number must have 16 or 18 digits']);
|
|
|
}
|
|
|
|
|
|
- if (!(strlen($IFSCNumber) == 18 && $IFSCNumber)) {
|
|
|
+ if ($IFSCNumber && strlen($IFSCNumber) != 18) {
|
|
|
return apiReturnFail(['web.bank.clabe_invalid_length', 'The Clabe number must have 18 digits']);
|
|
|
}
|
|
|
|
|
|
@@ -1036,11 +1036,7 @@ class WithDrawInfoController
|
|
|
|
|
|
$info = json_decode(json_encode($info),true);
|
|
|
|
|
|
- if(env('REGION_24680')=='na-mexico') {
|
|
|
- $info['bank_list'] = config('games.mex_bank_list');
|
|
|
- }else if(env('REGION_24680')=='eu-russian') {
|
|
|
- $info['bank_list'] = config('games.ru_bank_list');
|
|
|
- }
|
|
|
+ $info['bank_list'] = config('games.mex_bank_list');
|
|
|
|
|
|
|
|
|
$AccountsInfoModel = new AccountsInfo();
|