From 88621c3112694fa68bfad58f48b82c8fff63e485 Mon Sep 17 00:00:00 2001 From: Sevan Nerse Date: Mon, 12 Apr 2021 22:23:52 +0300 Subject: [PATCH] thousands separator and decimal mark must be different --- app/Http/Requests/Setting/Currency.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Http/Requests/Setting/Currency.php b/app/Http/Requests/Setting/Currency.php index 97159a63e..5e2d8fedd 100644 --- a/app/Http/Requests/Setting/Currency.php +++ b/app/Http/Requests/Setting/Currency.php @@ -40,6 +40,7 @@ class Currency extends FormRequest 'enabled' => 'integer|boolean', 'default_currency' => 'boolean', 'symbol_first' => 'nullable|boolean', + 'thousands_separator' => 'different:decimal_mark', ]; } }