@extends('layouts.admin-simple') @section('title', 'Indirect FOC Inventory') @section('page-title')

Indirect Goods FOC Inventory

@endsection @section('content')
Add or Adjust FOC Stock
@csrf
@forelse($inventory as $row)@empty@endforelse
ItemDivisionSourceInvoice / BatchConditionStatusAvailableReserved
{{ $row->indirectGood?->ig_code }}
{{ $row->indirectGood?->ig_description }}
{{ $row->division?->division_name }}{{ $row->source_reference ?? $row->source_type }}{{ $row->invoice_number ?? '-' }} / {{ $row->batch_number ?? '-' }}{{ ucfirst($row->condition) }}{{ ucfirst($row->status) }}{{ number_format($row->quantity_available,2) }}{{ number_format($row->quantity_reserved,2) }}
No indirect FOC inventory.
@endsection