fix: 修复提现金额计算中的类型转换问题

This commit is contained in:
lingling 2025-03-07 13:31:32 +08:00
parent 75a2bdaf03
commit f5cc5ebd54
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ class WithdrawController
}
//提现金额
$rate = ExchangeRate::where('type', 'BDT')->get();
$money = $money_no / 100 * $rate[0]['points'];
$money = (int)$money_no / 100 * $rate[0]['points'];
$withdraw = Withdraw::create([
'user_id' => $user_id,