| {{ $key+1 }} |
{{ $product->name }} SKU : {{ $product->sku }} |
{{ $product->hsn }} |
{{ $product->quantity }} |
Rs. {{ $product->unit_price }} |
@php
$unitDiscount = 10;
@endphp
{{ number_format((float)$unitDiscount, 2, '.', '') }} |
@php
$totalAmount += $taxableAmount = $product->quantity * ($product->unit_price - $unitDiscount);
@endphp
{{ number_format((float)$taxableAmount, 2, '.', '') }} |
0.00 |
0.00 |
{{ number_format((float)$taxableAmount, 2, '.', '') }} |
@endforeach