Branch Name |
: |
{{$data->branchName}}
|
|
@foreach($data->reportData as $index => $dat)
PO Number |
: |
{{$dat->poNumber}} |
|
SL |
Name |
Branch |
Warehouse |
Requisition No |
Requisition Qty |
{{-- Transfer Qty | --}}
PO Qty |
Remain PO Qty |
GRN Qty |
Gift Qty |
@foreach($dat->products as $index => $req)
@php
$reqRequestDetailsLength = isset($req->reqRequestDetails) ? count($req->reqRequestDetails) : 1;
@endphp
@foreach($req->reqRequestDetails as $batch)
@if($loop->first)
{{$index + 1}} |
{{$req->product->name}} |
@endif
{{$batch->branch}} |
{{$batch->warehouse}} |
@if($loop->first)
@if(isset($batch->requisitionNo)) {{$batch->requisitionNo}} @else N/A @endif
|
@endif
@if($loop->first)
@if(isset($batch->requisitionQty)) {{$batch->requisitionQty}} @else N/A @endif
|
@endif
@if($loop->first)
{{-- {{$batch->transferQty}} | --}}
{{$batch->grnQty}} |
{{$req->remainPoQty}} |
@endif
{{$batch->grnQty}} |
{{$batch->giftQty}} |
@endforeach
@endforeach
@endforeach