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