close #2179 Fixed: Email tags Issue in Invoice/Bill Templates #nna2rb

This commit is contained in:
Cüneyt Şentürk 2021-07-07 10:07:30 +03:00
parent 50d9290990
commit e24a63324a
2 changed files with 2 additions and 0 deletions

View File

@ -92,6 +92,7 @@ class Bill extends Notification
$this->bill->document_number,
money($this->bill->amount, $this->bill->currency_code, true),
money($this->bill->amount_due, $this->bill->currency_code, true),
company_date($this->bill->issued_at),
company_date($this->bill->due_at),
route('bills.show', $this->bill->id),
$this->bill->contact_name,

View File

@ -114,6 +114,7 @@ class Invoice extends Notification
$this->invoice->document_number,
money($this->invoice->amount, $this->invoice->currency_code, true),
money($this->invoice->amount_due, $this->invoice->currency_code, true),
company_date($this->invoice->issued_at),
company_date($this->invoice->due_at),
URL::signedRoute('signed.invoices.show', [$this->invoice->id]),
route('invoices.show', $this->invoice->id),