Releases: oscarotero/form-manager
Releases · oscarotero/form-manager
6.1.2
6.1.1
6.1.0
6.0.1
6.0.0
New version fully rewritten with a lot of breaking changes. See CHANGELOG
5.1.3
5.1.2
5.1.1
Fixed the attribute name
if the attribute multiple
is set, adding a []
at the end. (ex: name="authors[]"
instead name="authors"
)
5.1.0
Added labelAttr
and wrapperAttr
methods to allow to add attributes to these properties chaining the fields:
$form = F::form([
'name' => F::text()
->label('Your name')
->labelAttr(['class' => 'field-label'])
->wrapperAttr(['class' => 'field-row'])
]);
//This is the same than
$form['name']->label->attr(['class' => 'field-label']);
$form['name']->wrapper->attr(['class' => 'field-label']);
5.0.4
Removed the <div>
wrapping hidden inputs.