whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
app
/
Notifications
/
Upload File:
files >> /home/kckglobal/public_html/portal/app/Notifications/NewProject.php
<?php namespace App\Notifications; use App\Models\Project; class NewProject extends BaseNotification { /** * Create a new notification instance. * * @return void */ private $project; public function __construct(Project $project) { $this->project = $project; $this->company = $this->project->company; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { $via = ['database']; if ($notifiable->email_notifications && $notifiable->email != '') { array_push($via, 'mail'); } return $via; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { $build = parent::build($notifiable); $url = route('projects.show', $this->project->id); $url = getDomainSpecificUrl($url, $this->company); $content = __('email.newProject.text') . ' - ' . ($this->project->project_name) . '<br><br>' . __('email.newProject.loginNow'); $build ->subject(__('email.newProject.subject') . ' - ' . config('app.name') . '.') ->greeting(__('email.hello') . ' ' . $notifiable->name . ',') ->markdown('mail.project.created', [ 'url' => $url, 'content' => $content, 'themeColor' => $this->company->header_color, '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->project->toArray(); } }
Copyright ©2021 || Defacer Indonesia