The Eloquent ORM is quite nice, though I\'m wondering if there is an easy way to setup MySQL transactions using innoDB in the same fashion as PDO, or if I would have to exte
I'm Sure you are not looking for a closure solution, try this for a more compact solution
try{ DB::beginTransaction(); /* * Your DB code * */ DB::commit(); }catch(\Exception $e){ DB::rollback(); }