eavSetupFactory = $eavSetupFactory; } public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context) { $setup->startSetup(); $eavSetup = $this->eavSetupFactory->create(array('setup' => $setup)); $eavSetup->addAttribute( 'pfay_contacts', array( 'type'=>'varchar', 'input'=>'text', 'label'=>'Inchoo Custom', 'required'=>false, 'user_defined'=>true, 'global'=>\Magento\Eav\Model\Entity\Attribute\ScopedAttributeInterface::SCOPE_STORE, 'group'=>'Pfay Contacts' ) ); $setup->endSetup(); } }