transfer = $transfer; } /** * Execute the job. * * @return mixed */ public function handle() { $this->deleteRelationships($this->transfer, ['expense_transaction', 'income_transaction']); $this->transfer->delete(); return true; } }