client = $client; $this->invoice = $invoice; } public function run() { /* Return immediately if status is not draft */ if ($this->invoice->status_id != Invoice::STATUS_DRAFT) { return $this->invoice; } $this->invoice->markInvitationsSent(); $this->invoice->setReminder(); event(new InvoiceWasMarkedSent($this->invoice, $this->invoice->company)); $this->invoice ->service() ->setStatus(Invoice::STATUS_SENT) ->applyNumber() ->setDueDate() ->save(); $this->client->service()->updateBalance($this->invoice->balance)->save(); $this->invoice->ledger()->updateInvoiceBalance($this->invoice->balance); return $this->invoice; } }