Product Associations
Association Types
How to create a new Association Type?
/** @var ProductAssociationTypeInterface $associationType */
$associationType = $this->container->get('sylius.factory.product_association_type')->createNew();
$associationType->setCode('accessories');
$associationType->setName('Accessories');$this->container->get('sylius.repository.product_association_type')->add($associationType);How to add a new Association to a Product?
$product = $this->container->get('sylius.repository.product')->findOneBy(['code' => 'go-pro-camera']);Last updated
Was this helpful?
