sandipon
sandipon

Reputation: 986

Laravel error:After installing laravel I get the following message

After installing laravel I get the following message when run the project:

 Whoops, looks like something went wrong.

Upvotes: 0

Views: 95

Answers (2)

baao
baao

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:

enter image description here

In this file (app/config/app.php) - first line:

enter image description here

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

Corentin
Corentin

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

Related Questions