diff --git a/app/Notifications/Purchase/Payment.php b/app/Notifications/Purchase/Payment.php deleted file mode 100644 index 55f8173ab..000000000 --- a/app/Notifications/Purchase/Payment.php +++ /dev/null @@ -1,122 +0,0 @@ -payment = $payment; - $this->template = EmailTemplate::alias($template_alias)->first(); - $this->attach_pdf = $attach_pdf; - } - - /** - * Get the mail representation of the notification. - * - * @param mixed $notifiable - * @return \Illuminate\Notifications\Messages\MailMessage - */ - public function toMail($notifiable) - { - $message = $this->initMessage(); - - // Attach the PDF file - if ($this->attach_pdf) { - $message->attach($this->storeTransactionPdfAndGetPath($this->payment), [ - 'mime' => 'application/pdf', - ]); - } - - return $message; - } - - /** - * Get the array representation of the notification. - * - * @param mixed $notifiable - * @return array - */ - public function toArray($notifiable) - { - $this->initArrayMessage(); - - return [ - 'template_alias' => $this->template->alias, - 'title' => trans('notifications.menu.' . $this->template->alias . '.title'), - 'description' => trans('notifications.menu.' . $this->template->alias . '.description', $this->getTagsBinding()), - 'payment_id' => $this->payment->id, - 'vendor_name' => $this->payment->contact->name, - 'amount' => $this->payment->amount, - 'payment_date' => company_date($this->payment->paid_at), - ]; - } - - public function getTags() - { - return [ - '{payment_amount}', - '{payment_date}', - '{payment_admin_link}', - '{vendor_name}', - '{company_name}', - '{company_email}', - '{company_tax_number}', - '{company_phone}', - '{company_address}', - ]; - } - - public function getTagsReplacement() - { - return [ - money($this->payment->amount, $this->payment->currency_code, true), - company_date($this->payment->paid_at), - route('payments.show', $this->payment->id), - $this->payment->contact->name, - $this->payment->company->name, - $this->payment->company->email, - $this->payment->company->tax_number, - $this->payment->company->phone, - nl2br(trim($this->payment->company->address)), - ]; - } -}