You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add processing of boolean variables. For example, I can write in .env: APP_DEBUG=false
but this code return true in any case: getenv('APP_DEBUG')
In the end, I have to write something like: getenv('APP_DEBUG')=="true"