diff --git a/config/app.php b/config/app.php index 87a88ee..baae7ad 100644 --- a/config/app.php +++ b/config/app.php @@ -151,7 +151,7 @@ return [ | */ - 'currency' => env('APP_CURRENCY', 'USD'), + 'currency' => env('APP_CURRENCY', 'RUB'), /* |-------------------------------------------------------------------------- diff --git a/packages/Webkul/Core/src/Console/Commands/Install.php b/packages/Webkul/Core/src/Console/Commands/Install.php index 4665420..324ddb6 100644 --- a/packages/Webkul/Core/src/Console/Commands/Install.php +++ b/packages/Webkul/Core/src/Console/Commands/Install.php @@ -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();