Laravel 5 How to switch from Production mode
Laravel 5 gets its enviroment related variables from the .env file located in the root of your project. You just need to set APP_ENV to whatever you want, for example: APP_ENV=development This is used to identify the current enviroment. If you want to display errors, you’ll need to enable debug mode in the same file: … Read more