靴でデータを表形式で表示する方法はありますか?
<table border ="1">
<tr>
<th>Name</th>
<th> Content</th>
</tr>
@products.each do |product|
<tr>
<td> product.name </td>
<td>product.detail</td>
</tr>
end
</table>