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, **) if formstrap render_input :checkbox, attribute, else check_box attribute, end end |