bill = $bill; } /** * Execute the job. * * @return Bill */ public function handle() { \DB::transaction(function () { $this->clone = $this->bill->duplicate(); }); event(new BillCreated($this->clone)); return $this->clone; } }