| @lang('SNo') | Date | Invoice# | Type | @lang('Sale Quantity') | @lang('Return Quantity') | @lang('Cost Price') | @lang('product.product_mrp') | @lang('Selling Price') | @lang('lang_v1.potential_profit') | @lang('Profit Margin %') |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $x }} | {{ $sell_line->created_at }} | {{ $sell_line->invoice_no }} | {{ $sell_line->transaction_type }} | {{ number_format($sell_line->sold_qty,2) }} | {{ number_format($sell_line->r_qty,2) }} | {{ number_format($costPrice,2) }} | {{ number_format($sell_line->product_mrp * $totalQty,2) }} | {{ number_format($sell_line->selling_price * $totalQty ,2) }} | {{ number_format($profit,2) }} | {{ number_format($profit_margin,2) }} |