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