Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/app/Notifications/EstimateAccepted.php
Назад
<?php namespace App\Notifications; use App\Models\Estimate; use App\Models\EmailNotificationSetting; class EstimateAccepted extends BaseNotification { /** * Create a new notification instance. * * @return void */ private $estimate; private $emailSetting; public function __construct(Estimate $estimate) { $this->estimate = $estimate; $this->company = $this->estimate->company; $this->emailSetting = EmailNotificationSetting::where('company_id', $this->company->id)->where('slug', 'estimate-notification')->first(); } /** * Get the notification's delivery channels. * * @return array */ public function via($notifiable) { $via = []; if ($this->emailSetting->send_slack == 'yes' && $this->company->slackSetting->status == 'active') { $this->slackUserNameCheck($notifiable) ? array_push($via, 'slack') : null; } return $via; } public function toSlack($notifiable) { return $this->slackBuild($notifiable) ->content(__('email.hello') . ' ' . $notifiable->name . $this->estimate->estimate_number . ' ' . __('email.estimateAccepted.subject')); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка