Reputation: 986
After installing laravel I get the following message when run the project:
Whoops, looks like something went wrong.
Upvotes: 0
Views: 95
Reputation: 73291
You can have a look at your laravel log, located at app/storage/logs/laravel.log
.
Whilst your application is in development mode, you can make your life a lot easier by enabling detailed error reporting. Just change false to true here:
In this file (app/config/app.php) - first line:
Nobody will be able to help you with above posted error message, but it will be very easy to help yourself with detailed error reporting enabled
Upvotes: 1
Reputation: 149
Set 'debug' to true in app/config/app.php. If it's already to true, set it to false, refresh, then set it again to true.
Upvotes: 1