how to check if query executed or not in laravel code example
Example: how to check if query is successfully inserted laravel
try {
DB::beginTransaction();
// your code
DB::commit();
}catch (Exception $e) {
DB::rollback();
// other actions
}