%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/app/Notifications/ |
Upload File : |
<?php
namespace App\Notifications;
use App\Models\EmailNotificationSetting;
use App\Models\Task;
use Illuminate\Notifications\Messages\MailMessage;
class NewClientTask extends BaseNotification
{
/**
* Create a new notification instance.
*
* @return void
*/
private $task;
private $user;
private $emailSetting;
public function __construct(Task $task)
{
$this->task = $task;
$this->emailSetting = EmailNotificationSetting::userAssignTask();
$this->company = $this->task->company;
}
/**
* 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');
}
return $via;
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return MailMessage
*/
public function toMail($notifiable): MailMessage
{
$build = parent::build();
$startDate = (!is_null($this->task->start_date)) ? $this->task->start_date->format($this->company->date_format) : null;
$content = __('email.newClientTask.content') . ': <b style="color: black"> '. $this->task->project->project_name . '</b><p>'
.__('app.task'). ' '. __('app.details'). ':' .'<br>' .
' <b style="color: green">' . __('app.task') . __('app.name') . ': ' . $this->task->heading . '</b> <br> ' .
' <b style="color: green">' . __('app.startDate') . ': ' . $startDate . '</b>
</p>';
return $build
->subject(__('email.newClientTask.subject') . ' ' . $this->task->heading . ' - ' . config('app.name') . '.')
->greeting(__('email.hello') . ' ' . $notifiable->name . ',')
->markdown('mail.task.task-created-client-notification', [
'content' => $content,
'notifiableName' => $notifiable->name,
]);
}
/**
* Get the array representation of the notification.
*
* @return array
*/
public function toArray()
{
return [
'id' => $this->task->id,
'created_at' => $this->task->created_at->format('Y-m-d H:i:s'),
'heading' => $this->task->heading
];
}
}