Printed by: {{auth()->user()->name}}
Printed Date: 2024-11-21 11:02:13 AM
{{@strtoupper("Item Stock Leger")}}

Stock Summary
{{empty(request('station')) ? @strtoupper(auth()->user()->station) : request('station')}}
Report Date
{{ empty(request('start_date')) ? $dayClose->day_close : request('start_date')}}
@foreach($items->chunk(100) as $row) @foreach($row as $item) @if(in_array(empty(request('station')) ? auth()->user()->station : request('station') , json_decode($item->inactive_station)) == true) @continue @endif @endforeach @endforeach
Item Category UOM Opening
Stock
Qty + Qty - Closing
Stock
Manual
Stock
Variance
{{@ucwords(@strtolower($item->item_category))}} {{$item->item_unit}} @convert($op = round($item->opening_stock, 2) ) @convert( $stockIn = round($item->stock_in, 2) ) @convert($stockOut = round($item->stock_out, 2) ) @convert( $closig = ($op + $stockIn) - $stockOut) @convert(round($item->physical_stock, 2)) @if($balance < 0) @convert($balance) @else @convert($balance) @endif