Is there a way to submit an array using 'form_for'?
Here's an example of what I mean if I used regular html to pass the values:
<input type="text" name="product[cost][]">
Which should become:
params["product"]["cost"]
But is there any way to do this using form_for?