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