У меня есть 3 типа форм в symfony 3
PanneauType, который является родителем всех следующих коллекций
->add('faces', CollectionType::class, array(
'entry_type' => FacePanneauType::class,
'entry_options' => array('label' => false),
'allow_add' => true,
'allow_delete' => true,
))
FaceType
->add('agendas', CollectionType::class, array(
'entry_type' => AgendaType::class,
'entry_options' => array('label' => false),
'allow_add' => true,
'allow_delete' => true,
'attr' =>['class'=>'agendas']
))
AgendaType
->add('debut', null, ['attr'=>['class'=>'form-control']])
->add('fin', null, ['attr'=>['class'=>'form-control']])
Как мне сгенерировать свою форму в веточке, добавить и удалить повестку дня?