Add additional company tags in notifications

This commit is contained in:
CTSoft
2020-08-10 20:31:00 +02:00
parent 139f02eec6
commit 6c301c2c95
3 changed files with 27 additions and 3 deletions

View File

@ -91,6 +91,10 @@ class PaymentReceived extends Notification
'{transaction_payment_method}',
'{customer_name}',
'{company_name}',
'{company_email}',
'{company_tax_number}',
'{company_phone}',
'{company_address}',
];
}
@ -108,7 +112,11 @@ class PaymentReceived extends Notification
company_date($this->transaction->paid_at),
$this->transaction->payment_method,
$this->invoice->contact_name,
$this->invoice->company->name
$this->invoice->company->name,
$this->invoice->company->email,
$this->invoice->company->tax_number,
$this->invoice->company->phone,
nl2br(trim($this->invoice->company->address)),
];
}
}