How To Enable Debugging In Laravel PHP Apps
Search
How To Enable Debugging In Laravel PHP Apps
- Go to laravel\app\start\global.php, find App::error(function(Exception $exception, $code), and comment out the contents of that function.
- Go to laravel\app\config\app.php, and change 'debug' => false to 'debug' => true.
- ---> You will now see error messages.