{{-- ITEM NAME (PRINT ONCE) --}}
|
@if($lastItem !== $row['particular'])
{{ $row['particular'] }}
@php $lastItem = $row['particular']; @endphp
@endif
|
{{ $row['warehouse'] ?? 'N/A' }} |
{{ $row['uom'] }} |
{{-- STOCK IN --}}
{{ number_format($row['quantity_received'], 2) }} |
{{ number_format($row['buying_price'], 2) }} |
{{ number_format($row['stock_in_value'], 2) }} |
{{-- STOCK OUT --}}
{{ number_format($row['stock_out_qty'], 2) }} |
{{ number_format($row['stock_out_cost'], 2) }} |
{{ number_format($row['stock_out_value'], 2) }} |
{{-- BALANCE --}}
{{ number_format($row['balance_qty'], 2) }} |
{{ number_format($row['balance_value'], 2) }} |
@endforeach