Execute some actions when the transaction fails in laravel 10
Exists some way to do some actions after a transaction fails in laravel?, I know it's possible to use a try/catch, but inside of the transaction are other delegate instructions that alredy utilizes try/catch statement. DB::transaction(function () { $this->otherService->Create($data); });…