| SI.# |
Description |
Qty. |
Price |
VAT |
Total |
@foreach($items as $item)
| {{$i}} |
{{$item->item_name}} |
{{$item->quantity}} |
{{number_format($unit_price,2)}} |
{{number_format($vat_amount,2)}} |
{{number_format($line_total,2)}} |
@endforeach
| Gross Total: |
{{number_format($total,2)}} |
| VAT Total: |
{{number_format($vat_amount_net,2)}} |
| Net Total: |
{{number_format($net_total,2)}} |
|