# 🧾 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
{{__('Items')}}

{{__('Tax')}}
@{{ items.tax }}
{{__('Sub Total')}}
@{{ items.price }}
{{__('Discount')}}
@{{ items.discount }}
{{__('Total')}}
@{{ items.total }}
```