If you are facing any issues or showing a blank page or 500 internal server error you may set the app debug true to see the actual error messages.
To enable debugging in a Laravel application, you need to set the APP_DEBUG
environment variable to true
in your .env
file. Here are the steps:
.env
file in the root directory of your Laravel project.APP_DEBUG
.APP_DEBUG=true
.Now, detailed error messages should be displayed when something goes wrong in your application.
Set it back to false after testing.