Laravel has renderable exceptions that it renders by default if they were thrown (like ModelNotFoundException, AuthenticationException, ValidationException). Is there a way to prevent this default behavior?
example: if I use the Model::findOrFail($someId) method and there is no model with id $someId, then laravel will show 404 page (because findOrFail method threw a ModelNotFoundException exception). But I need Laravel to process it as a normal, non-renderable exception.