Laravel is a powerful php framework . Laravel provide many feature for developer to create web application on easy way .like laravel debugging is one of them . Many developer does need app debugging feature for testing own application. So lets start and learn how to ON/OFF own laravel App debugging . Find .env file in project root directory . by default laravel App debugging is ON like below .
APP_DEBUG=true
If you want to stop debugging on production mode when your project working on live server . In this case you have to do same like below.
APP_DEBUG=false