Tuesday 30 September 2014

"Whoops, looks like something went wrong" on Laravel

After you installed the Laravel, you can stuck with the following error,
"Whoops, looks like something went wrong"

then, you might have forgotten to enable the debugger which can be enabled on app/config/app.php file.
// look at the beginning of an array
'debug' => false,

// change to 'true'
'debug' => true,

No comments:

Post a Comment

Please post any queries and comments here.