user-service/app/Events/CustomerAccountRequestEvent...

33 lines
703 B
PHP

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