Make it possible to specify currency in .env

This commit is contained in:
rabol 2019-12-28 11:22:41 +01:00
parent a63c2f9fd8
commit 0abc5ec43e
2 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ APP_DEBUG=true
APP_URL=http://localhost
APP_TIMEZONE='Asia/Kolkata'
LOG_CHANNEL=stack
APP_CURRENCY=USD
DB_CONNECTION=mysql
DB_HOST=127.0.0.1

View File

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