AdamWathan\BootForms\BasicFormBuilder::inputGroup PHP Méthode

inputGroup() public méthode

public inputGroup ( $label, $name, $value = null )
    public function inputGroup($label, $name, $value = null)
    {
        $control = new InputGroup($name);
        if (!is_null($value) || !is_null($value = $this->getValueFor($name))) {
            $control->value($value);
        }
        return $this->formGroup($label, $name, $control);
    }