ok

Mini Shell

Direktori : /home2/selectio/public_html/fms-worksuite/app/Events/
Upload File :
Current File : /home2/selectio/public_html/fms-worksuite/app/Events/NewProjectMemberEvent.php

<?php

namespace App\Events;

use App\Models\ProjectMember;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;

class NewProjectMemberEvent
{

    use Dispatchable, InteractsWithSockets, SerializesModels;

    public $projectMember;

    public function __construct(ProjectMember $projectMember)
    {
        $this->projectMember = $projectMember;

    }

}

Zerion Mini Shell 1.0