whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
app
/
Notifications
/
Upload File:
files >> /home/kckglobal/public_html/portal/app/Notifications/PaymentReminder.php
<?php namespace App\Notifications; use App\Http\Controllers\InvoiceController; use App\Models\EmailNotificationSetting; use App\Models\GlobalSetting; use App\Models\Invoice; use Illuminate\Notifications\Messages\MailMessage; use NotificationChannels\OneSignal\OneSignalChannel; use NotificationChannels\OneSignal\OneSignalMessage; use Illuminate\Support\Facades\App; class PaymentReminder extends BaseNotification { /** * Create a new notification instance. * * @return void */ private $invoice; private $user; private $emailSetting; public function __construct(Invoice $invoice) { $this->invoice = $invoice; $this->company = $this->invoice->company; if ($invoice->project_id != null && $invoice->project_id != '') { $this->user = $invoice->project->client; } elseif ($invoice->client_id != null && $invoice->client_id != '') { $this->user = $invoice->client; } $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_slack == 'yes' && $this->company->slackSetting->status == 'active') { $this->slackUserNameCheck($notifiable) ? array_push($via, 'slack') : null; } if ($this->emailSetting->send_push == 'yes' && push_setting()->status == 'active') { array_push($via, OneSignalChannel::class); } 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.paymentReminder.subject'), $this->invoice->invoice_number); } return $via; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return MailMessage */ // phpcs:ignore public function toMail($notifiable): MailMessage { $build = parent::build($notifiable); // For Sending pdf to email $invoiceController = new InvoiceController(); if ($pdfOption = $invoiceController->domPdfObjectForDownload($this->invoice->id)) { $pdf = $pdfOption['pdf']; $filename = $pdfOption['fileName']; $build->attachData($pdf->output(), $filename . '.pdf'); App::setLocale($notifiable->locale ?? $this->company->locale ?? 'en'); $url = url()->temporarySignedRoute('front.invoice', now()->addDays(GlobalSetting::SIGNED_ROUTE_EXPIRY), [$this->invoice->hash]); $paymentUrl = getDomainSpecificUrl($url, $this->company); $content = __('app.invoiceNumber') . ' : ' . $this->invoice->invoice_number . '<p> <b style="color: green">' . __('app.dueDate') . ' : ' . $this->invoice->due_date->format($this->company->date_format) . '</b> </p>'; $build->subject(__('email.paymentReminder.subject') . ' (' . $this->invoice->invoice_number . ') - ' . config('app.name') . '.') ->greeting(__('email.hello') . ' ' . $this->user->name . '!') ->markdown('mail.payment.reminder', [ 'paymentUrl' => $paymentUrl, 'content' => $content, 'themeColor' => $this->company->header_color ]); parent::resetLocale(); return $build; } } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ //phpcs:ignore public function toArray($notifiable) { return [ 'id' => $this->invoice->id, 'created_at' => $this->invoice->created_at->format('Y-m-d H:i:s'), 'heading' => $this->invoice->invoice_number ]; } /** * Get the Slack representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\SlackMessage */ public function toSlack($notifiable) { return $this->slackBuild($notifiable) ->content('*' . __('email.paymentReminder.subject') . '*' . "\n" . __('app.invoice') . ' - ' . $this->invoice->invoice_number); } // phpcs:ignore public function toOneSignal($notifiable) { return OneSignalMessage::create() ->setSubject(__('email.paymentReminder.subject')) ->setBody($this->invoice->heading); } }
Copyright ©2021 || Defacer Indonesia