AdamWathan\BootForms\HorizontalFormBuilder::checkbox PHP Method

checkbox() public method

public checkbox ( $label, $name )
    public function checkbox($label, $name)
    {
        $control = $this->builder->checkbox($name);
        $checkGroup = $this->checkGroup($label, $name, $control)->addClass('checkbox');
        return new OffsetFormGroup($this->wrap($checkGroup), $this->columnSizes);
    }