| Date | {{ $date }} |
| Invoice # | {{$invoiceNumber}} |
| Customer ID | {{$clientId}} |
|
BILL TO
|
|||||||||||||||||||
| # | Item Name | Price | Quantity | Total(base) | @if ($totalDiscount!=0)Discount | @endifTotal without tax | Tax | Total |
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item['item'] }} | ${{ $item['price'] }} | {{ $item['quantity'] }} | ${{ $item['totalBase'] }} | @if ($totalDiscount!=0){{ $item['discount'] }}% (${{ number_format($item['detailedDiscount'], 2, '.', ',') }}) | @endif${{ number_format($item['totalWithDiscount'], 2, '.', ',') }} | {{ $item['tax'] }}% (${{ number_format($item['detailedTax'], 2, '.', ',') }}) | ${{ number_format($item['total'], 2, '.', ',') }} |
| Total(base) | ${{ $totalBase }} |
| Discount {{ $item['discount'] }}% of (${{ $item['totalBase'] }}) | - ${{ number_format($item['detailedDiscount'], 2, '.', ',') }} |
| Subtotal | ${{ number_format($subTotal1, 2, '.', ',') }} |
| Tax {{ $item['tax'] }}% of (${{ $item['totalBase'] }}) | + ${{ number_format($item['detailedTax'], 2, '.', ',') }} |
| Grand Total | ${{ number_format($grandTotal, 2, '.', ',') }} |