@csrf @php $total_gst_amount = 0; $IGST = $CGST = $SGST = 0; @endphp @foreach($sale_invoice->getSaleInvoiceDetails as $key => $value) @endforeach
Sl.No ITEM NAME & DETAILS MRP QTY Return QTY Dis(%) PRICE TOTAL
{!! $key + 1 !!} {!! $value->getProduct->name ?? '' !!} {!! isset($value->getProduct->getProductPrice->mrp) ? convertDecimelPoint($value->getProduct->getProductPrice->mrp) : '' !!} {!! isset($value->main_qty) ? convertDecimelPoint($value->main_qty) : '' !!} {!! isset($value->discount_amount) ? convertDecimelPoint($value->discount_amount) : '' !!} ({!! $value->discount_percentage ?? '' !!}) {!! isset($value->price) ? convertDecimelPoint($value->price) : '' !!} {!! convertDecimelPoint($value->total_amount) ?? '' !!}