Make it possible to specify currency in .env
This commit is contained in:
parent
a63c2f9fd8
commit
0abc5ec43e
|
|
@ -6,6 +6,7 @@ APP_DEBUG=true
|
||||||
APP_URL=http://localhost
|
APP_URL=http://localhost
|
||||||
APP_TIMEZONE='Asia/Kolkata'
|
APP_TIMEZONE='Asia/Kolkata'
|
||||||
LOG_CHANNEL=stack
|
LOG_CHANNEL=stack
|
||||||
|
APP_CURRENCY=USD
|
||||||
|
|
||||||
DB_CONNECTION=mysql
|
DB_CONNECTION=mysql
|
||||||
DB_HOST=127.0.0.1
|
DB_HOST=127.0.0.1
|
||||||
|
|
|
||||||
|
|
@ -102,7 +102,7 @@ return [
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'currency' => 'USD',
|
'currency' => env('APP_CURRENCY','USD'),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue