whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
Modules
/
Recruit
/
Events
/
Upload File:
files >> /home/kckglobal/www/portal/Modules/Recruit/Events/NewJobEvent.php
<?php namespace Modules\Recruit\Events; use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\SerializesModels; use Modules\Recruit\Entities\RecruitJob; class NewJobEvent { use Dispatchable, InteractsWithSockets, SerializesModels; public $job; /** * Create a new event instance. * * @return void */ public function __construct(RecruitJob $job) { $this->job = $job; } /** * Get the channels the event should be broadcast on. * * @return array */ public function broadcastOn() { return []; } }
Copyright ©2021 || Defacer Indonesia