B L Praveen
B L Praveen

Reputation: 2010

Laravel disable debug mode

How to disable debug mode in laravel? I changed in .env file to APP_DEBUG=false still it is showing error message. I checked in config/app.php also it is also having 'debug' => env('APP_DEBUG', false) Where else I need to change

Upvotes: 0

Views: 776

Answers (1)

Samandar
Samandar

Reputation: 64

run this command

php artisan optimize:clear

and check again

Upvotes: 2

Related Questions