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