invoice && ($this->invoice->fresh()->status_id != Invoice::STATUS_DRAFT || $this->invoice->is_deleted)) { return $this->invoice; } $adjustment = $this->invoice->amount; /*Set status*/ $this->invoice ->service() ->setStatus(Invoice::STATUS_SENT) ->updateBalance($adjustment, true) ->save(); /*Update ledger*/ $this->invoice ->ledger() ->updateInvoiceBalance($adjustment, "Invoice {$this->invoice->number} marked as sent."); /* Perform additional actions on invoice */ $this->invoice ->service() ->applyNumber() ->setDueDate() ->touchPdf() ->setReminder() ->save(); /*Adjust client balance*/ $this->invoice->client->service()->updateBalance($adjustment)->save(); $this->invoice->markInvitationsSent(); event(new InvoiceWasUpdated($this->invoice, $this->invoice->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null))); if ($fire_webhook) { event('eloquent.updated: App\Models\Invoice', $this->invoice); } $this->invoice->sendEvent(Webhook::EVENT_SENT_INVOICE, "client"); return $this->invoice->fresh(); } }