Skip to content

Commit

Permalink
add default support for Central African currency (#865)
Browse files Browse the repository at this point in the history
  • Loading branch information
tnga committed Mar 28, 2022
1 parent b714833 commit 4e7441a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions database/seeders/CurrenciesTableSeeder.php
Expand Up @@ -275,6 +275,14 @@ public function run()
'thousand_separator' => '.',
'decimal_separator' => ',',
],
[
'name' => 'Central African Franc',
'code' => 'XAF',
'symbol' => 'CFA ',
'precision' => '2',
'thousand_separator' => ',',
'decimal_separator' => '.',
],
[
'name' => 'West African Franc',
'code' => 'XOF',
Expand Down

0 comments on commit 4e7441a

Please sign in to comment.