exception.report

Fired after the exception has been reported

Example usage (performs additional reporting on the exception)

Event::listen('exception.report', function (\Throwable $throwable) { app('sentry')->captureException($throwable); });

Usage

Globally

use Event;

Event::listen('exception.report', function () {
    // Your event listener code goes here...
});

Triggers

Copyright © 2024 Winter CMS