<%= turbo_stream_from "products" %> <%= turbo_refreshes_with method: :morph, scroll: :preserve %>
<% if notice.present? %>

<%= notice %>

<% end %>

Products

<% @products.each do |product| %> <% end %>
<%= link_to 'New product', new_product_path, class: "inline rounded-lg py-3 px-5 bg-green-600 text-white block font-medium" %>
<%= image_tag(product.image, class: 'w-40') %>

<%= product.title %>

<%= truncate(strip_tags(product.description), length: 80) %>

<%= number_to_currency(product.price) %>

  • <%= link_to 'Show', product, class: 'hover:underline' %>
  • <%= link_to 'Edit', edit_product_path(product), class: 'hover:underline' %>
  • <%= button_to 'Destroy', product, method: :delete, class: 'hover:underline', data: { turbo_confirm: "Are you sure?" } %>