2022-08-11 11:01:21 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Notifications;
|
|
|
|
|
|
|
|
use App\Helpers\Helper;
|
|
|
|
use App\Models\Setting;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
use Illuminate\Notifications\Messages\SlackMessage;
|
|
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
|
|
|
|
class AcceptanceAssetAcceptedNotification extends Notification
|
|
|
|
{
|
|
|
|
use Queueable;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new notification instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct($params)
|
|
|
|
{
|
2022-08-11 12:01:11 -07:00
|
|
|
$this->item_tag = $params['item_tag'];
|
|
|
|
$this->item_model = $params['item_model'];
|
|
|
|
$this->item_serial = $params['item_serial'];
|
2022-08-11 14:00:21 -07:00
|
|
|
$this->accepted_date = Helper::getFormattedDateObject($params['accepted_date'], 'date', false);
|
2022-08-11 12:01:11 -07:00
|
|
|
$this->assigned_to = $params['assigned_to'];
|
|
|
|
$this->company_name = $params['company_name'];
|
2022-08-11 11:01:21 -07:00
|
|
|
$this->settings = Setting::getSettings();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the notification's delivery channels.
|
|
|
|
*
|
|
|
|
* @param mixed $notifiable
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function via()
|
|
|
|
{
|
|
|
|
|
|
|
|
$notifyBy[] = 'mail';
|
|
|
|
|
|
|
|
return $notifyBy;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the mail representation of the notification.
|
|
|
|
*
|
|
|
|
* @param mixed $notifiable
|
|
|
|
* @return \Illuminate\Notifications\Messages\MailMessage
|
|
|
|
*/
|
|
|
|
public function toMail()
|
|
|
|
{
|
2022-08-11 13:28:30 -07:00
|
|
|
$message = (new MailMessage)->markdown('notifications.markdown.asset-acceptance',
|
2022-08-11 11:01:21 -07:00
|
|
|
[
|
2022-08-11 12:01:11 -07:00
|
|
|
'item_tag' => $this->item_tag,
|
|
|
|
'item_model' => $this->item_model,
|
|
|
|
'item_serial' => $this->item_serial,
|
|
|
|
'accepted_date' => $this->accepted_date,
|
|
|
|
'assigned_to' => $this->assigned_to,
|
|
|
|
'company_name' => $this->company_name,
|
|
|
|
'intro_text' => trans('mail.acceptance_asset_accepted'),
|
2022-08-11 11:01:21 -07:00
|
|
|
])
|
|
|
|
->subject(trans('mail.acceptance_asset_accepted'));
|
|
|
|
|
|
|
|
return $message;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|