Answers for "commit and rollback in laravel db"

SQL
0

transaction commit rollback in laravel

// try...catch
try {
    // Transaction
    $exception = DB::transaction(function() {

        // Do your SQL here

    });

    if(is_null($exception)) {
        return true;
    } else {
        throw new Exception;
    }

}
catch(Exception $e) {
    return false;
}
Posted by: Guest on October-15-2020

Code answers related to "commit and rollback in laravel db"

Code answers related to "SQL"

Browse Popular Code Answers by Language