# 🧾 Items items component can be used on your invoice like a [inputs-repeater.md](inputs-repeater.md "mention") but it's support calculation operations for qty and price and total and vat. you can use it like this ```html {{__('Item')}} {{__('Price')}} {{__('Discount')}} {{__('Tax')}} {{__('QTY')}} {{__('Total')}} {{__('Items')}} @{{ optionIndex.charAt(0).toUpperCase() + optionIndex.slice(1) }} @{{ value.charAt(0).toUpperCase() + value.slice(1) }} {{__('Tax')}} @{{ items.tax }} {{__('Sub Total')}} @{{ items.price }} {{__('Discount')}} @{{ items.discount }} {{__('Total')}} @{{ items.total }} ```