php - Nested collection fields in Sonata Admin (2.3) -
i'm having problems creating form creating course. part of database scheme i'm trying create form: so i'm trying create course can create sessions , dates (moment) attached session. should this: in courseadmin class have: protected function configureformfields(formmapper $formmapper) { $formmapper ->add('name', 'text', array('label' => 'naam')) ->add('description', 'textarea', array('label' => 'beschrijving')) ->add('materials', 'textarea', array('label' => 'benodigde materialen')) ->add('numberofparticipants', 'number', array('label' => 'aantal deelnembers')) ->add('numberofdays', 'number', array('label' => 'aantal dagen')) ->add('pr...