I am trying to figure out how I can send errors to my email in Laravel 5. I haven\'t had much luck finding any good resources.
There used to be good packages like: http
Theres a package here https://github.com/designmynight/laravel-log-mailer that adds a mail driver to Laravel 5.6's LogManager which should do exactly what you are after.
There are configuration settings in the config/logging.php file and you can create different mail channels for logging information to different recipients. The email template is also customisable.