Category : {{ book.category }}
Author : {{ book.author }}
Pages : {{ book.pages }}
ISBN : {{ book.isbn }}
Price : {{ formatPrice(book.price) }}
{{ book.stock==0 ? 'Out Of Stock' : 'Stock : ' + book.stock }}
| Name | Author | Price | Quantity | Add / Remove | Total |
|---|---|---|---|---|---|
| {{ item.name }} | {{ item.author }} | {{ formatPrice(item.price) }} | {{ item.quantity }} | {{ formatPrice(item.price*item.quantity) }} |