Laravel: Pass exception to handler from try/catch block

Do you need to do something in the catch block? If you don't, just remove the try / catch. If you do, throw the exception.

try {

... do something ...

} catch(Exception $e) {

... do something ...

throw $e;

}