diff --git a/app/controller/api/WithdrawController.php b/app/controller/api/WithdrawController.php index 66b3d5c..8c08a8e 100644 --- a/app/controller/api/WithdrawController.php +++ b/app/controller/api/WithdrawController.php @@ -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,