Torann / laravel-currency

This provides Laravel with currency functions such as currency formatting and conversion using up-to-date exchange rates.
http://lyften.com/projects/laravel-currency
BSD 2-Clause "Simplified" License
390 stars 137 forks source link

Correction on the currencies information for Africa (XAF and XOF) #74

Closed thugyac closed 7 years ago

thugyac commented 7 years ago

Hello ,

Great package, we really love it and use it on our website. But we have a little suggestion for the currencies.php files. Some african currencies are incorrect.

In Africa we XOF and XAF currencies and in your file you only add one of them. Plus the symbole is not "F" but "F.CFA"

I change your file in my vendor project but everytime we make an update we have to change it again, so can you please correct the fille ?

There is what must be in the file :

'XAF' => [
    'name' => 'Franc CFA (XAF)',
    'symbol' => 'F.CFA',
    'format' => '1,0.00 F.CFA',
    'exchange_rate' => 0.00,
],
'XOF' => [
    'name' => 'Franc CFA (XOF)',
    'symbol' => 'F.CFA',
    'format' => '1,0.00 F.CFA',
    'exchange_rate' => 0.00,
],

Kind regard. Yacoub

Torann commented 7 years ago

Just added them :-)