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