Mobile app version of vmapp.org
Login or Join
Berryessa370

: Laravel Detailed Error Page Lost I want to see all problems when a file can't loaded e.g. I used to do it but now I can't. The only thing I get when a problem occurs is Whoops, looks

@Berryessa370

Posted in: #Configuration #Debug #Laravel #Php

I want to see all problems when a file can't loaded e.g. I used to do it but now I can't. The only thing I get when a problem occurs is


Whoops, looks like something went wrong.


How can I change this to detailed error? How can I see which line has to be fixed?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Berryessa370

2 Comments

Sorted by latest first Latest Oldest Best

 

@RJPawlick198

The best way is to go to this directory: yourproject/app/storage/logs.

Inside the logs folder. you will see a laravel.log file. This is like a stack trace which tells you how your programs is implemented and what specific type of error it is. You just need to copy the error message and search on Google.

10% popularity Vote Up Vote Down


 

@Sent6035632

Edit app/config/app.php and make sure debug is set to true:

'debug' => true,

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme