kjpps = $kjpps; $this->penawaran = $penawaran; $this->permohonan = $permohonan; $this->villages = $villages; $this->districts = $districts; $this->cities = $cities; $this->provinces = $provinces; } /** * Execute the job. */ public function handle(): void { $email = new SendPenawaranTenderEmail(); $email->with([ 'penawaran' => $this->penawaran, 'permohonan' => $this->permohonan, 'villages' => $this->villages, 'districts' => $this->districts, 'cities' => $this->cities, 'provinces' => $this->provinces, ]); Mail::to($this->kjpps)->send($email); } }