April 14, 2018 —John Koster
The report
function is used to report an exception to the applications exception handler. By default, the application exception handler is located at app/Exceptions/Handler.php
. The report
function will invoke the report
method of the application exception handler with the provided exception.
The signature of the report
function is:
1function report(2 $exception3);
The following example demonstrates how to report an exception to the application's exception handler using the report
helper function:
1try {2 // Attempt some operation that throws exceptions.3} catch (Exception $e) {4 5 // Report the exception.6 report($e);7 8 // Perform some action with the exception.9}
∎
The following amazing people help support this site and my open source projects ♥️
If you're interesting in supporting my work and want to show up on this list, check out my GitHub Sponsors Profile.