Answer the question
In order to leave comments, you need to log in
Checking for a minimum value in a form?
Please tell me there is a form:
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('list',
CollectionType::class,
[
'required' => false,
'allow_add' => true,
'error_bubbling' => true,
])
->add('price',
IntegerType::class,
[
'required' => false,
'error_bubbling' => true,
'constraints' => [
new GreaterThanOrEqual(50)
],
]);
}
'constraints' => [
new GreaterThanOrEqual(50)
],
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question