bill = $bill; } /** * Execute the job. * * @return Bill */ public function handle() { $this->deleteRelationships($this->bill, [ 'transactions', 'recurring' ]); $this->bill->status = 'cancelled'; $this->bill->save(); return $this->bill; } }