Page No: {{$pageNo++}}
{{ is_numeric(Auth::user()->active_unit) ? \App\Unit::query()->findOrFail(Auth::user()->active_unit)->name : 'NULL' }}
Inventory Transaction
{{--Transaction Type : Purchase
--}}Report From {{ dateFormat($date_from) }} To {{ dateFormat($date_to) }}
| #SL | Group | Opening Qty | Opening Value | Goods Rcvd | Goods Rcvd Value | Goods Issue | Goods Issue Value | Closing Qty | Closing Value |
|---|---|---|---|---|---|---|---|---|---|
| {{ $i++ }} | {{ $stock['group_name'] }} | {{round($stock['opening_qty'],2) }} | {{round($stock['opening_price'],2) }} | {{round($stock['goods_received_qty'],2) }} | {{round($stock['goods_received_price'],2) }} | {{round($stock['goods_issue_qty'],2) }} | {{round($stock['goods_issue_price'],2) }} | {{round($stock['closing_qty'],2) }} | {{round($stock['closing_price'],2) }} |
| Total | {{ round($total_opening_qty,2) }} | {{ round($total_opening_price,2) }} | {{ round($total_goods_received_qty,2) }} | {{ round($total_goods_received_price,2) }} | {{ round($total_goods_issue_qty,2) }} | {{ round($total_goods_issue_price,2) }} | {{ round($total_closing_qty,2) }} | {{ round($total_closing_price,2) }} | |