report = $report; $this->request = $this->getRequestInstance($request); } /** * Execute the job. * * @return Report */ public function handle() { \DB::transaction(function () { $this->report->update($this->request->all()); }); return $this->report; } }