Slide 31
Slide 31 text
Samuele Lilli - DonCallisto
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('name', TextType::class)
->add('products', EntityType::class, [
'class' => Product::class,
'multiple' => true,
'required' => false,
'by_reference' => false,
]);
}
by_refence => false