I am having a slight problem with appending data and then adding it into the array.
Here is my code
@order.orderdesc ||= []
@cart.line_items.each do |item|
@order.orderdesc += item.quantity + "x" + item.product.title
end
I only want to add item.quantity and item.product.title. They can be accessed.
Thanks