invoice = $invoice; } /** * Execute the job. * * @return Invoice */ public function handle() { $clone = $this->invoice->duplicate(); event(new InvoiceCreated($clone)); return $clone; } }