Magento 2 Custom drop down attribute added options not shown
I created a new Product drop-down attribute (Typ) programmatically : $eavSetupFactory->addAttribute( Product::ENTITY, $name, [ 'type' => 'int', 'label' => $name, 'input' => 'select', 'required' => true, 'backend' => 'MagentoEavModelEntityAttributeBackendArrayBackend', 'global' => ScopedAttributeInterface::SCOPE_STORE, 'visible' => true, 'searchable' => true, 'filterable' =>…