Shopping Application

0
AM developing an app that supports shopping cart generation. i have "Add to Cart Button on each product and i would wish to populate alist or tabular View from Genrated Items in Shopping cart. How can i achieve this.
asked
1 answers
0

You would need shopping cart and shopping cart item entities. The shopping cart would be linked to the user or account entity, the shopping cart item to your product entity. When the user clicks the add to cart button, create an item, or increase the number of products if the item already exists. A list view or template grid can show items with a lot of freedom to style them.

answered