Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App Debug is not working in Laravel 5.5

I have set APP_DEBUG=true in .env file, and also configure the app.php in config folder debug' => env('APP_DEBUG', true). But the page is not showing the debugging or errors.

If I try a page which is not in the views just showing "Sorry the page is not found", and there are two files. named .env and .env.example

like image 440
Ahsan Habib Himel Avatar asked Sep 08 '17 09:09

Ahsan Habib Himel


1 Answers

This may be due to cache. Try this command

php artisan config:cache

like image 53
Vikas Rinvi Avatar answered Oct 22 '22 01:10

Vikas Rinvi