work_order = $work_order; $this->recipient = $recipient; $this->staff = $staff; $this->customer = $customer; $this->company = $company; } /** * Execute the job. * * @return void */ public function handle() { // Mail::to($this->recipient)->send(new AssignWorkOrder($this->work_order,$this->staff,$this->customer,$this->company)); } public function failed(Exception $exception) { // } }