@extends('app-new') @section('content')
Issue Stock
{{ $requisition->requisition_no }}
Back
@csrf @if ($errors->any())
Please fix the following:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Items
@foreach($requisition->items as $row) @php $total = $row->qty_approved ?? $row->qty_requested; $remaining = $total - $row->qty_issued; @endphp @endforeach
Item UOM Requested/Approved Issued Remaining Issue Qty
{{ $row->item->item_name ?? '-' }} {{ $row->uom->name ?? '-' }} {{ number_format((float) $total, 3) }} {{ number_format((float) $row->qty_issued, 3) }} {{ number_format((float) $remaining, 3) }}
Cancel
@endsection @push('head-script') @endpush