module ButtonHelper def button_link_to(text, method: :post, **) content_tag(:button, text, { data: { turbo_method: method }, ** }) end end