I\'m trying to enable the debug for my app but it looks like I don\'t have any feedback.
The environment is set to local (in the .env file) and if I run
As Blair said, it may turn out that you put some wrong code in the middleware or in 'Exceptions/Handler.php' e.g. :
if($e->getStatusCode()===404) { ... }
instead of
if($e instanceof NotFoundHttpException) { ... }