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
Just for the sake of completeness, I had this issue when the error occurred in methods that used Model::findOrFail($someId). Replacing it with Model::find($someId) displayed the error log.
Model::findOrFail($someId)
Model::find($someId)