service = app('LaborApplyService'); $this->isAppend = $isAppend; } /** * Execute the job. * @return void * @throws WarningException */ public function handle() { $response = $this->service->allocationLaborToLaborCompany($this->isAppend); if (!$response['success']) throw new WarningException($response['error_message']); } }