From 8a5aa01d1c9f56b79babb4b3f0860699a7447634 Mon Sep 17 00:00:00 2001 From: xiaochong0302 Date: Mon, 13 May 2024 18:52:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=AF=E4=BB=98=E9=99=90=E9=A2=9D1w->10w?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Validators/Order.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Validators/Order.php b/app/Validators/Order.php index 1c6ca41d..c0888816 100644 --- a/app/Validators/Order.php +++ b/app/Validators/Order.php @@ -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'); }