Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 533 Bytes

debugging.md

File metadata and controls

18 lines (11 loc) · 533 Bytes

Debugging

If you're having issues with your local instance, these two methods are your best bet.

Debug mode

If you're having 500 errors any of the app's URLs, try the following.

Enable debug mode by editing the .env file and replacing APP_DEBUG=false with APP_DEBUG=true. This will now show the error in the browser, which can give you a hint as to what went wrong.

Error logs

If you want access to the detailed error logs, execute the following commands.

sail shell
tail -f storage/logs/laravel.log