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