diff --git a/app/Notifications/Purchase/Bill.php b/app/Notifications/Purchase/Bill.php index c8da2187c..b47a7758e 100644 --- a/app/Notifications/Purchase/Bill.php +++ b/app/Notifications/Purchase/Bill.php @@ -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, diff --git a/app/Notifications/Sale/Invoice.php b/app/Notifications/Sale/Invoice.php index 1056f1176..fd3364ff3 100644 --- a/app/Notifications/Sale/Invoice.php +++ b/app/Notifications/Sale/Invoice.php @@ -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),