@include('templates.pdf_header', [ 'organisation' => $organisation, 'asOfDate' => $asOfDate, 'title' => 'STOCK SUMMARY REPORT' ])
Report Date: {{ $asOfDate }}
Stock Summary
@foreach($data as $index => $row) @endforeach
# Item Stock In Stock Out Balance
{{ $index + 1 }} {{ $row['item_name'] }}
{{ $row['item_description'] ?? '' }}
{{ number_format($row['stock_in'], 2) }} {{ number_format($row['stock_out'], 2) }} {{ number_format($row['balance'], 2) }}