@if(count($reportData) > 0)
@endif
@else
@endif
| S/L | Product Name | Variant | Product Code | Quantity | Per Quantity Cost | Total Cost | Per Quantity Retail Price | Total Sale Value |
|---|---|---|---|---|---|---|---|---|
| Warehouse: {{ $key }} | ||||||||
| {{ $serial }} | {{ $value->product_name }} | @if(!empty($value->variant_name)) {{ $value->variant_name }} @else - @endif | {{ $value->code }} | {{ $value->quantity }} | {{ number_format($value->product_cost, 2) }} | {{ number_format($value->quantity*$value->product_cost, 2) }} | {{ number_format($value->retail_price, 2) }} | {{ number_format($value->quantity*$value->retail_price, 2) }} |
| Grand Total: | {{ $totalQuantity }} | {{ number_format($totalProductCost, 2) }} | {{ number_format($totalProductQtyCost, 2) }} | {{ number_format($totalRetailPrice, 2) }} | {{ number_format($totalSaleValue, 2) }} | |||