Method: Formstrap::FormBuilder#checkbox

Defined in:
lib/formstrap/form_builder.rb

#checkbox(attribute, formstrap: true, **options) ⇒ Object



25
26
27
28
29
30
31
# File 'lib/formstrap/form_builder.rb', line 25

def checkbox(attribute, formstrap: true, **options)
  if formstrap
    render_input :checkbox, attribute, options
  else
    check_box attribute, options
  end
end