Add Kazakhstani Tenge (KZT) currency

Signed-off-by: Maxim Kurbatov <maxim@kurb.me>
This commit is contained in:
Maxim Kurbatov
2025-09-28 11:49:37 +05:00
committed by GitHub
parent 3adf3d2fdb
commit a02c4b42a4

View File

@@ -80,6 +80,7 @@ class TransactionCurrencySeeder extends Seeder
$currencies[] = ['code' => 'CHF', 'name' => 'Swiss franc', 'symbol' => 'CHF', 'decimal_places' => 2];
$currencies[] = ['code' => 'NOK', 'name' => 'Norwegian krone', 'symbol' => 'kr.', 'decimal_places' => 2];
$currencies[] = ['code' => 'CZK', 'name' => 'Czech koruna', 'symbol' => 'Kč', 'decimal_places' => 2];
$currencies[] = ['code' => 'KZT', 'name' => 'Kazakhstani tenge', 'symbol' => '₸', 'decimal_places' => 2];
foreach ($currencies as $currency) {
if (null === TransactionCurrency::where('code', $currency['code'])->first()) {