I am trying to store shipping details and cart info in a table orders
. In my cart there would have more than one product. Now I created a hidden input field as <input type="hidden" name="product_code[]" value="{{ $product->id }}">
.
I received them in my controller as $input = serialize(Input::get('product_code'));
, May be I can store them in this way.
But the problem is how can I show them ? Also please suggest me what would be the best way to this kinds of task.
Thank you very much.