whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
app
/
Events
/
Upload File:
files >> /home/kckglobal/public_html/portal/app/Events/ShiftRotationEvent.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 ShiftRotationEvent { use Dispatchable, InteractsWithSockets, SerializesModels; public $employeeData; public $dates; public $rotationFrequency; /** * Create a new event instance. * * @return void */ public function __construct($employeeData, $dates, $rotationFrequency) { $this->employeeData = $employeeData; $this->dates = $dates; $this->rotationFrequency = $rotationFrequency; } }
Copyright ©2021 || Defacer Indonesia