@extends('../layout/' . $layout) @section('subhead') Atarud MIS - Inventory Report @endsection @section('subcontent')

Inventory Report

Report Filters

Report Content

@if(isset($fromDate) && isset($toDate))
@endif
@if(isset($data['transactions']))

{{ $data['item']->name }} Inventory Report

{{--

asdfasdf

--}} @foreach($data['transactions'] as $row) @php @endphp @endforeach
# Quantity Date Transaction Type
{{++$loop->index}} {{$row->quantity}} {{$row->date}} {{$row->transaction_type}}
Total Ins {{ $data['totalIn'] }}
Total Outs {{ $data['totalOut'] }}
Fixed Quantity {{ ($data['item']->quantity) }}
Quantity {{ ($data['totalIn'] + $data['item']->quantity - $data['totalOut']) }}
@endif
@endsection @section('script') @endsection