The Report Method: The report Helper

Public function isValid($value)
{
    try {
        // Validate the value...
    } catch (Exception $e) {
        report($e);

        return false;
    }
}

Allows you to quickly report an exception using your exception handler's report method without rendering an error page.

The Report Method: The report Helper — Structure map

Clickable & Draggable!

The Report Method: The report Helper — Related pages: