estimate = $estimate; $this->deleteExistingFile = $deleteExistingFile; } /** * Execute the job. * * @return void */ public function handle() { $this->estimate->generatePDF('estimate', $this->estimate->estimate_number, $this->deleteExistingFile); return 0; } }