123 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			123 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Notifications\Portal;
 | |
| 
 | |
| use App\Abstracts\Notification;
 | |
| use Illuminate\Support\Facades\URL;
 | |
| 
 | |
| class PaymentReceived extends Notification
 | |
| {
 | |
|     /**
 | |
|      * The bill model.
 | |
|      *
 | |
|      * @var object
 | |
|      */
 | |
|     public $invoice;
 | |
| 
 | |
|     /**
 | |
|      * The payment transaction.
 | |
|      *
 | |
|      * @var string
 | |
|      */
 | |
|     public $transaction;
 | |
| 
 | |
|     /**
 | |
|      * The email template.
 | |
|      *
 | |
|      * @var string
 | |
|      */
 | |
|     public $template;
 | |
| 
 | |
|     /**
 | |
|      * Create a notification instance.
 | |
|      *
 | |
|      * @param  object  $invoice
 | |
|      */
 | |
|     public function __construct($invoice = null, $transaction = null, $template = null)
 | |
|     {
 | |
|         parent::__construct();
 | |
| 
 | |
|         $this->invoice = $invoice;
 | |
|         $this->transaction = $transaction;
 | |
|         $this->template = $template;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Build 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 available
 | |
|         if (isset($this->invoice->pdf_path)) {
 | |
|             $message->attach($this->invoice->pdf_path, [
 | |
|                 'mime' => 'application/pdf',
 | |
|             ]);
 | |
|         }
 | |
| 
 | |
|         return $message;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Get the array representation of the notification.
 | |
|      *
 | |
|      * @param  mixed  $notifiable
 | |
|      * @return array
 | |
|      */
 | |
|     public function toArray($notifiable)
 | |
|     {
 | |
|         return [
 | |
|             'invoice_id' => $this->invoice->id,
 | |
|             'amount' => $this->invoice->amount,
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public function getTags()
 | |
|     {
 | |
|         return [
 | |
|             '{invoice_number}',
 | |
|             '{invoice_total}',
 | |
|             '{invoice_due_date}',
 | |
|             '{invoice_status}',
 | |
|             '{invoice_guest_link}',
 | |
|             '{invoice_admin_link}',
 | |
|             '{invoice_portal_link}',
 | |
|             '{transaction_total}',
 | |
|             '{transaction_paid_date}',
 | |
|             '{transaction_payment_method}',
 | |
|             '{customer_name}',
 | |
|             '{company_name}',
 | |
|             '{company_email}',
 | |
|             '{company_tax_number}',
 | |
|             '{company_phone}',
 | |
|             '{company_address}',
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public function getTagsReplacement()
 | |
|     {
 | |
|         return [
 | |
|             $this->invoice->document_number,
 | |
|             money($this->invoice->amount, $this->invoice->currency_code, true),
 | |
|             company_date($this->invoice->due_at),
 | |
|             trans('documents.statuses.' . $this->invoice->status),
 | |
|             URL::signedRoute('signed.invoices.show', [$this->invoice->id, 'company_id' => $this->invoice->company_id]),
 | |
|             route('invoices.show', $this->invoice->id),
 | |
|             route('portal.invoices.show', $this->invoice->id),
 | |
|             money($this->transaction->amount, $this->transaction->currency_code, true),
 | |
|             company_date($this->transaction->paid_at),
 | |
|             $this->transaction->payment_method,
 | |
|             $this->invoice->contact_name,
 | |
|             $this->invoice->company->name,
 | |
|             $this->invoice->company->email,
 | |
|             $this->invoice->company->tax_number,
 | |
|             $this->invoice->company->phone,
 | |
|             nl2br(trim($this->invoice->company->address)),
 | |
|         ];
 | |
|     }
 | |
| }
 |