ok

Mini Shell

Direktori : /home2/selectio/public_html/fms-worksuite/app/Events/
Upload File :
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;
    }

}

Zerion Mini Shell 1.0