ok
Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/www/fms-worksuite/app/Events/ |
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/www/fms-worksuite/app/Events/NewUserEvent.php |
<?php namespace App\Events; use App\Models\User; use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class NewUserEvent { use Dispatchable, InteractsWithSockets, SerializesModels; public $user; public $password; public function __construct(User $user, $password) { $this->user = $user; $this->password = $password; } }