#49: change order item form labels #50

Merged
lubiana merged 1 commit from #49_change-order-item-form-labels into main 2024-08-15 14:34:22 +00:00
Showing only changes of commit 0068654885 - Show all commits

View file

@ -14,9 +14,13 @@ final class OrderItemType extends AbstractType
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder
->add('name')
->add('extras')
->add('createdBy')
->add(child: 'name', options: [
'label' => 'order item',
])
->add(child: 'extras')
->add(child: 'createdBy', options: [
'label' => 'your name',
])
;
}