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