ok

Mini Shell

Direktori : /home2/selectio/public_html/fms-worksuite/app/Events/
Upload File :
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;
    }

}

Zerion Mini Shell 1.0