# | ID | Item Name | Price | Amount | Total |
---|---|---|---|---|---|
{{ $loop->iteration }} | {{ $item->get('id') }} | {{ $item->get('name') }} | {{ $item->get('price') }} {{ $invoice->formatCurrency()->symbol }} | {{ $item->get('ammount') }} | {{ $item->get('totalPrice') }} {{ $invoice->formatCurrency()->symbol }} |
Subtotal | {{ $invoice->subTotalPriceFormatted() }} {{ $invoice->formatCurrency()->symbol }} |
Taxes {{ $invoice->tax_type == 'percentage' ? '(' . $invoice->tax . '%)' : '' }} | {{ $invoice->taxPriceFormatted() }} {{ $invoice->formatCurrency()->symbol }} |
TOTAL | {{ $invoice->totalPriceFormatted() }} {{ $invoice->formatCurrency()->symbol }} |