From c4bccdb131e170889e264a95b77cd65623d71a9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cihan=20=C5=9Eent=C3=BCrk?= <53110792+CihanSenturk@users.noreply.github.com> Date: Tue, 16 Jul 2024 16:00:54 +0300 Subject: [PATCH] added new currency --- config/money.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/config/money.php b/config/money.php index 90ff5c3a1..2d9aeb111 100644 --- a/config/money.php +++ b/config/money.php @@ -1651,6 +1651,7 @@ return [ 'thousands_separator' => ',', ], + // This currency is no longer used. It will be removed soon. 'VEF' => [ 'name' => 'Bolivar', 'code' => 937, @@ -1662,6 +1663,28 @@ return [ 'thousands_separator' => '.', ], + 'VES' => [ + 'name' => 'Bolívar Soberano', + 'code' => 928, + 'precision' => 2, + 'subunit' => 100, + 'symbol' => 'Bs S', + 'symbol_first' => true, + 'decimal_mark' => ',', + 'thousands_separator' => '.', + ], + + 'VED' => [ + 'name' => 'Dijital Bolívar', + 'code' => 926, + 'precision' => 2, + 'subunit' => 100, + 'symbol' => 'Bs D', + 'symbol_first' => true, + 'decimal_mark' => ',', + 'thousands_separator' => '.', + ], + 'VND' => [ 'name' => 'Dong', 'code' => 704,