Add Rubble Money Value

dev
Andrey 2024-02-01 18:00:08 +03:00
parent c4e67ccadb
commit df6c5fcff4
2 changed files with 2 additions and 2 deletions

View File

@ -151,7 +151,7 @@ return [
|
*/
'currency' => env('APP_CURRENCY', 'USD'),
'currency' => env('APP_CURRENCY', 'RUB'),
/*
|--------------------------------------------------------------------------

View File

@ -125,7 +125,7 @@ class Install extends Command
$timezone = $this->anticipate('Please enter the default timezone', $TimeZones, date_default_timezone_get());
$this->envUpdate('APP_TIMEZONE=', $timezone);
$currency = $this->choice('Please enter the default currency', ['USD', 'EUR'], 'USD');
$currency = $this->choice('Please enter the default currency', ['USD', 'EUR','RUB'], 'USD');
$this->envUpdate('APP_CURRENCY=', $currency);
$this->addDatabaseDetails();