the link is as follows:
<%= button_to 'Delete',article_path(article), method: :delete, data: { confirm: "Are you sure?" } %>
the link is as follows:
<%= button_to 'Delete',article_path(article), method: :delete, data: { confirm: "Are you sure?" } %>
You tagged question as rails 7
Rails 7 use Turbo and new syntax is
<%= button_to 'Delete', article_path(article), method: :delete, form: { data: { turbo_confirm: "Are you sure?" } }%>