ok
Direktori : /home2/selectio/public_html/fms-worksuite/app/Events/ |
Current File : /home2/selectio/public_html/fms-worksuite/app/Events/EmployeeShiftScheduleEvent.php |
<?php namespace App\Events; use App\Models\EmployeeShiftSchedule; use Illuminate\Broadcasting\Channel; use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Broadcasting\PresenceChannel; use Illuminate\Broadcasting\PrivateChannel; use Illuminate\Contracts\Broadcasting\ShouldBroadcast; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class EmployeeShiftScheduleEvent { use Dispatchable, InteractsWithSockets, SerializesModels; public $employeeShiftSchedule; /** * Create a new event instance. * * @return void */ public function __construct(EmployeeShiftSchedule $employeeShiftSchedule) { $this->employeeShiftSchedule = $employeeShiftSchedule; } }