Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel 4 debugging not working

It's extremely frustrating that I have 'debug' => true in the app config but all Laravel is showing is "Whoops, looks like something went wrong." For the love of coding, does somebody know how to get debugging to work?

like image 622
suncoastkid Avatar asked Sep 13 '13 13:09

suncoastkid


1 Answers

I have faced the same problem. Laravel was showing only "Whoops, looks like something went wrong." but this line and not showing the actual error. Then I have checked the app/config/app.php file and changed "debug" => false to "debug" => true and it worked perfectly.

You said that you have also done it and still not working. I suggest you to run a composer update command for your project and then try again.

like image 173
BlackJack Avatar answered Oct 23 '22 17:10

BlackJack