method

collection_checkboxes

collection_checkboxes(method, collection, value_method, text_method, options = {}, html_options = {}, &block)
public

Wraps ActionView::Helpers::FormOptionsHelper#collection_checkboxes for form builders:

<%= form_with model: @post do |f| %>
  <%= f.collection_checkboxes :author_ids, Author.all, :id, :name_with_initial %>
  <%= f.submit %>
<% end %>

Please refer to the documentation of the base helper for details.