Fix currency formatting

This commit is contained in:
Hillel Coren 2018-03-20 15:51:25 +02:00
parent 8320a2adb2
commit 1988cddeb8

View File

@ -55,6 +55,10 @@ class CountriesSeeder extends Seeder
'BG' => [ // Belgium 'BG' => [ // Belgium
'swap_currency_symbol' => true, 'swap_currency_symbol' => true,
], ],
'CA' => [
'thousand_separator' => ',',
'decimal_separator' => '.',
],
'CH' => [ 'CH' => [
'swap_postal_code' => true, 'swap_postal_code' => true,
], ],
@ -120,6 +124,10 @@ class CountriesSeeder extends Seeder
'LU' => [ 'LU' => [
'swap_postal_code' => true, 'swap_postal_code' => true,
], ],
'MT' => [
'thousand_separator' => ',',
'decimal_separator' => '.',
],
'MY' => [ 'MY' => [
'swap_postal_code' => true, 'swap_postal_code' => true,
], ],