request = $this->getRequestInstance($request); } /** * Execute the job. * * @return Category */ public function handle() { $category = Category::create($this->request->all()); return $category; } }