Food Item
Quantity Transaction
| Sr No. |
Description |
Quantity |
Note |
@if( $inventoryTransaction )
@php $i=0; @endphp
@foreach( $inventoryTransaction as $transaction )
| {{ ++$i }} |
{{ $transaction->transaction_type ?? '' }} |
{{ $transaction->quantity }} |
{{ $transaction->reason ?? '' }} |
@endforeach
@endif
{{--
Quantity Transaction
@php
/*echo '
';
print_r($quantityLogs);
echo '';*/
@endphp
| Quantity Changes |
Description |
Total Quantity |
@foreach( $quantityLogs as $quantityLog )
| @if($quantityLog->type == 'increment')+@elseif($quantityLog->type == 'decrement')-@endif{{ $quantityLog->quantity }} |
{{ $quantityLog->subject}} |
{{ $quantityLog->total_quantity}} |
@endforeach
--}}