I am using Laravel 3.2.13, I don't want to show errors to my users so I hide them and set:
/config/error.php
'log' => true
The log is working but it is not very readable, I would like to add some custom information like the current page $_SERVER["REQUEST_URI"]
or the session user_id Session::get('id')
.
Where can I do this?