ok
Direktori : /home2/selectio/public_html/fms-worksuite/app/Events/ |
Current File : /home2/selectio/public_html/fms-worksuite/app/Events/TicketReplyEvent.php |
<?php namespace App\Events; use App\Models\TicketReply; use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class TicketReplyEvent { use Dispatchable, InteractsWithSockets, SerializesModels; public $ticketReply; public $notifyUser; public function __construct(TicketReply $ticketReply, $notifyUser) { $this->ticketReply = $ticketReply; $this->notifyUser = $notifyUser; } }