How to disable Laravel debugger
This tutorial is How to disable Laravel debugger. This setup alternative is set to regard the APP_DEBUG condition variable, which is put away in your .env document. you should set the APP_DEBUG condition variable to valid. In your creation condition. You can change the .env file. The value APP_DEBUG in the .env file and if you can’t find it then set it false.
example
#old APP_NAME=Devnote APP_ENV=local APP_KEY=base64:0Q+9GSkEEi/MhUzchVQ4ATdnFIMtRAj8e3V+PMNXF+w= APP_DEBUG=true APP_URL=https://devnote.in
#new APP_NAME=Devnote APP_ENV=local APP_KEY=base64:0Q+9GSkEEi/MhUzchVQ4ATdnFIMtRAj8e3V+PMNXF+w= APP_DEBUG=false APP_URL=https://devnote.in
And i cleared cache with this command :
php artisan cache:clear