mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
57 lines
1.5 KiB
PHP
57 lines
1.5 KiB
PHP
<?php
|
||
|
||
return [
|
||
|
||
/*
|
||
|--------------------------------------------------------------------------
|
||
| Enabled Currencies
|
||
|--------------------------------------------------------------------------
|
||
|
|
||
| Define an array of currencies enabled for translatable input.
|
||
|
|
||
*/
|
||
|
||
'enabled' => explode(',', env('ENABLED_CURRENCIES', 'USD')),
|
||
|
||
/*
|
||
|--------------------------------------------------------------------------
|
||
| Default Currency
|
||
|--------------------------------------------------------------------------
|
||
|
|
||
| The default currency will be used if one can not
|
||
| be determined automatically.
|
||
|
|
||
*/
|
||
|
||
'default' => env('DEFAULT_CURRENCY', 'USD'),
|
||
|
||
/*
|
||
|--------------------------------------------------------------------------
|
||
| Supported Currencies
|
||
|--------------------------------------------------------------------------
|
||
|
|
||
| In order to enable a currency or use it at all
|
||
| the ISO currency code MUST be in this array.
|
||
|
|
||
*/
|
||
|
||
'supported' => [
|
||
'USD' => [
|
||
'name' => 'US Dollar',
|
||
'direction' => 'ltr',
|
||
'symbol' => '$',
|
||
'separator' => ',',
|
||
'point' => '.',
|
||
'decimals' => 2,
|
||
],
|
||
'TRY' => [
|
||
'name' => 'Türk Lirası',
|
||
'direction' => 'ltr',
|
||
'symbol' => '₺',
|
||
'separator' => ',',
|
||
'point' => '.',
|
||
'decimals' => 2,
|
||
],
|
||
],
|
||
];
|