Use DB Transactions

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:

DB::transaction(function () {
DB::table('users')->update(['votes' => 1]);
 
DB::table('posts')->delete();
});

Recent New Courses