data = $data; } /** * Execute the job. */ public function handle(TransactionService $transactionService): void { try { $transactionService->processTransaction($this->data); } catch (\Exception $e) { Log::error("Failed to process transaction: " . $e->getMessage()); throw $e; } } }