whoami7 - Manager
:
/
home
/
kckglobal
/
.trash
/
app
/
Events
/
Upload File:
files >> /home/kckglobal/.trash/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; } }
Copyright ©2021 || Defacer Indonesia