transfer = $transfer; } /** * Execute the job. * * @return boolean|Exception */ public function handle() { \DB::transaction(function () { $this->transfer->expense_transaction->delete(); $this->transfer->income_transaction->delete(); $this->transfer->delete(); }); return true; } }