I have to .env
files .env.local
and .env.pro
and I don't know how to switch between files, I tried changing config\app.php
from
'env' => env('APP_ENV', 'pro'),
to
'env' => env('APP_ENV', 'local'),
But I get a blank screen with no errors, How to tell the framework which file has to load?