I need to ask stupid question but my question to access .env variable inside it self not from php :
If i have .env
file for larvel5.4 and i have APP_URL
Like this :
APP_ENV=local
APP_KEY=base64:7qLJMqTxrAPk+tLJscVlmrzf2H16tAfbSoCZuleCkxQ=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost
and i have multi config variable use the domain link like this :
#Facebook
FACEBOOK_LOGIN_URL=http://localhost:8000/en/portal/facebook_login
FACEBOOK_CALLBACK_URL=http://localhost:8000/en/portal/facebook_callback
#Twitter
TWITTER_LOGIN_URL=http://localhost:8000/en/portal/twitter_login
TWITTER_CALLBACK_URL=http://localhost:8000/en/portal/twitter_callback
#Google
GOOGLE_LOGIN_URL=http://localhost:8000/en/portal/google_login
GOOGLE_CALLBACK_URL=http://localhost:8000/en/portal/google_callback
is there way to access the APP_URL in the same file like this :
FACEBOOK_LOGIN_URL= APP_URL /en/portal/facebook_login
Please i am new member don't give me minus for this question.
Thank you all