whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
app
/
Notifications
/
Upload File:
files >> /home/kckglobal/public_html/portal/app/Notifications/NewPayment.php
<?php namespace App\Notifications; use App\Http\Controllers\PaymentController; use App\Models\EmailNotificationSetting; use App\Models\Payment; class NewPayment extends BaseNotification { /** * Create a new notification instance. * * @return void */ private $payment; private $emailSetting; public function __construct(Payment $payment) { $this->payment = $payment; $this->company = $this->payment->company; $this->emailSetting = EmailNotificationSetting::where('company_id', $this->company->id)->where('slug', 'payment-notification')->first(); } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { $via = ['database']; if ($this->emailSetting->send_email == 'yes' && $notifiable->email_notifications && $notifiable->email != '') { array_push($via, 'mail'); } if ($this->emailSetting->send_push == 'yes' && push_setting()->beams_push_status == 'active') { $pushNotification = new \App\Http\Controllers\DashboardController(); $pushUsersIds = [[$notifiable->id]]; $pushNotification->sendPushNotifications($pushUsersIds, __('email.payment.subject'), $this->payment->currency->currency_symbol . $this->payment->amount); } return $via; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage|void */ public function toMail($notifiable) { $build = parent::build($notifiable); if (($this->payment->project_id && $this->payment->project->client_id != null) || ($this->payment->invoice_id && $this->payment->invoice->client_id != null)) { $url = route('payments.show', $this->payment->id); $url = getDomainSpecificUrl($url, $this->company); $payment_gateway = !is_null($this->payment->gateway) ? $this->payment->gateway . (($this->payment->offlineMethods) ? ' (' . $this->payment->offlineMethods->name . ')' : '') : '--'; $payment_invoice = $this->payment->invoice->custom_invoice_number ?? '--'; $projectName = $this->payment->project->project_name ?? '--'; $clientName = $this->payment->invoice->client->name ?? '--'; $clientEmail = $this->payment->invoice->client->email ?? '--'; $subject = __('email.payment.clientsubject') . ' (' . $this->payment->invoice->invoice_number . ') - ' . config('app.name') . '.'; if ($notifiable->hasRole('admin')) { $subject = __('email.payment.subject') . ' (' . $this->payment->invoice->invoice_number . ') - ' . config('app.name') . '.'; $content = __('email.payment.text') . '<br>' . __('email.payment.amount') . ' : ' . $this->payment->currency->currency_symbol . $this->payment->amount . '<br>' . __('email.payment.method') . ' : ' . $payment_gateway . '<br>' . __('email.payment.invoiceNumber') . ' : ' . $payment_invoice . '<br>' . __('email.payment.Project') . ' : ' . $projectName . '<br>' . __('email.payment.clientName') . ' : ' . $clientName . '<br>' . __('email.payment.clientEmail') . ' : ' . $clientEmail; } else { $content = __('email.payment.text') . '<br>' . __('email.payment.amount') . ' : ' . $this->payment->currency->currency_symbol . $this->payment->amount . '<br>' . __('email.payment.method') . ' : ' . $payment_gateway . '<br>' . __('email.payment.invoiceNumber') . ' : ' . $payment_invoice; } $paymentController = new PaymentController(); $pdfOption = $paymentController->domPdfObjectForDownload($this->payment->id); $pdf = $pdfOption['pdf']; $filename = $pdfOption['fileName']; $build->attachData($pdf->output(), $filename . '.pdf'); $build ->subject($subject) ->markdown('mail.email', [ 'url' => $url, 'content' => $content, 'themeColor' => $this->company->header_color, 'actionText' => __('email.payment.action'), 'notifiableName' => $notifiable->name, ]); parent::resetLocale(); return $build; } } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ //phpcs:ignore public function toArray($notifiable) { return $this->payment->toArray(); } }
Copyright ©2021 || Defacer Indonesia