@if ($carts->count() > 0)
| SN | Code | Item Name | Brand | Unit | Qnty | Rate | Total |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $cart->product->pid }} | {{ $cart->product->name }} | {{ $cart->product->brand->name }} | {{ $cart->product->unit->name }} |
@if ($cart->quantity > 1)
|
{{ bdnumber($cart->product->sellprice) }} | @php $total = $cart->quantity * $cart->product->sellprice; $grandtotal += $total; @endphp{{ bdnumber($total) }} |
| GRAND TOTAL | {{ bdnumber($grandtotal) }} | ||||||