芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/app/Notifications/NewInvoiceRecurring.php
invoice = $invoice; $this->company = $this->invoice->company; $this->emailSetting = EmailNotificationSetting::where('company_id', $this->company->id)->where('slug', 'invoice-createupdate-notification')->first(); } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { $via = ($this->emailSetting->send_email == 'yes' && $notifiable->email_notifications && $notifiable->email != '') ? ['mail', 'database'] : ['database']; return $via; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage|void */ public function toMail($notifiable) { if (($this->invoice->project && !is_null($this->invoice->project->client)) || !is_null($this->invoice->client_id)) { // For Sending pdf to email $invoiceController = new InvoiceController(); if ($pdfOption = $invoiceController->domPdfObjectForConsoleDownload($this->invoice->id)) { $pdf = $pdfOption['pdf']; $filename = $pdfOption['fileName']; $url = route('invoices.show', $this->invoice->id); $url = getDomainSpecificUrl($url, $this->company); return parent::build() ->subject(__('email.invoice.subject') . ' - ' . config('app.name') . '.') ->greeting(__('email.hello') . ' ' . $notifiable->name . '!') ->line(__('email.invoice.text')) ->action(__('email.invoice.action'), $url) ->line(__('email.thankyouNote')) ->attachData($pdf->output(), $filename . '.pdf'); } } } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ //phpcs:ignore public function toArray($notifiable) { return [ 'id' => $this->invoice->id, 'invoice_number' => $this->invoice->invoice_number ]; } }