From df6c5fcff449f5925a9fa7539c46d9b255fcfc20 Mon Sep 17 00:00:00 2001 From: Andrey Date: Thu, 1 Feb 2024 18:00:08 +0300 Subject: [PATCH] Add Rubble Money Value --- config/app.php | 2 +- packages/Webkul/Core/src/Console/Commands/Install.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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();