nanosanteservice/app/Events/InsuredConsultation.php

32 lines
713 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Events;
use App\Models\NhHealthCareSheet;
use App\Traits\Helper;
class InsuredConsultation extends Event
{
use Helper;
public $healthCareSheet;
public $mailTitle;
public $mailMessage;
public $notification;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(NhHealthCareSheet $healthCareSheet, string $mailTitle, string $mailMessage,
string $notification = null)
{
//
$this->healthCareSheet = $healthCareSheet;
$this->mailTitle = $mailTitle;
$this->mailMessage = $mailMessage;
$this->notification = $notification;
}
}