How to debug Laravel error 500 with no logs, no information

后端 未结 5 1228
执念已碎
执念已碎 2021-02-07 13:37

I\'m working on an existing Laravel application in order to develop new feature but after installing the app on my computer, I have an error 500 and no clue to resolve it.

5条回答
  •  故里飘歌
    2021-02-07 14:11

    I had simiar issue (saw error 500, but logs were present).

    In order to be able to see errors directly on the page, I did following changes:

    1. enable debug mode: APP_DEBUG=true
    2. reload configuration: php artisan config:cache

提交回复
热议问题