Mage2\Catalog\Controllers\Admin\CategoryController::create PHP Method

create() public method

Show the form for creating a new Category.
public create ( ) : Illuminate\Http\Response
return Illuminate\Http\Response
    public function create()
    {
        $categoryOptions = $this->_getCategoryOptions();
        return view('admin.catalog.category.create')->with('categoryOptions', $categoryOptions);
    }