Report Content
@if(isset($fromDate) && isset($toDate))
@endif
@if(isset($data['transactions']))
{{ $data['item']->name }} Inventory Report
{{--
asdfasdf
--}}
# |
Quantity |
Date |
Transaction Type |
@foreach($data['transactions'] as $row)
@php
@endphp
{{++$loop->index}} |
{{$row->quantity}} |
{{$row->date}} |
{{$row->transaction_type}} |
@endforeach
Total Ins |
{{ $data['totalIn'] }} |
Total Outs |
{{ $data['totalOut'] }} |
Fixed Quantity |
{{ ($data['item']->quantity) }} |
Quantity |
{{ ($data['totalIn'] + $data['item']->quantity - $data['totalOut']) }} |
@endif