If you have two DB operations performed, and second may get an error, then you should rollback the first one, right?
For that, I suggest to use DB Transactions, it's really easy in Laravel:
1DB::transaction(function () {2 DB::table('users')->update(['votes' => 1]);3 4 DB::table('posts')->delete();5});