1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-07-12 19:39:10 +08:00

支付限额1w->10w

This commit is contained in:
xiaochong0302 2024-05-13 18:52:57 +08:00
parent a31c991b1c
commit 8a5aa01d1c

View File

@ -118,7 +118,7 @@ class Order extends Validator
{
$value = $this->filter->sanitize($amount, ['trim', 'float']);
if ($value < 0.01 || $value > 10000) {
if ($value < 0.01 || $value > 100000) {
throw new BadRequestException('order.invalid_pay_amount');
}