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

radio() public méthode

public radio ( $label, $name, $value = null )
    public function radio($label, $name, $value = null)
    {
        if (is_null($value)) {
            $value = $label;
        }
        $control = $this->builder->radio($name, $value);
        return $this->radioGroup($label, $name, $control);
    }