Skip to content

5.1.0

Compare
Choose a tag to compare
@oscarotero oscarotero released this 12 Sep 08:43
· 79 commits to master since this release

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']);