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