How to laravel framework project switch from development mode to Production mode


First install your laravel project . Find the .ENV file Inside the project in root directory . When you install your laravel project by default set Local environment Like below .

APP_ENV=local

If you change your project environment in development mode you can change your project environment like below.

APP_ENV=development

If you change your project environment in production mode you can change your project environment like below.

APP_ENV=production