@extends('procurement::layouts.master') @section('title','Stock / Inventory') @section('content') @include('procurement::components.partials.page_header',['title'=>'Stock / Inventory'])
@forelse($stock as $s) @php $low = $s->component->replenish_qty > 0 && $s->qty_on_hand <= $s->component->replenish_qty; @endphp @empty @endforelse
ComponentProjectCategoryOn HandReservedAvailableReplenish QtyBinLast Count
{{ Str::limit($s->component->description,40) }} @if($low)Low@endif {{ $s->component->project->name ?? '—' }} {{ ucwords(str_replace('_',' ',$s->component->category ?? '—')) }} {{ $s->qty_on_hand }} {{ $s->qty_reserved }} {{ $s->qty_available }} {{ $s->component->replenish_qty ?: '—' }} {{ $s->bin_location ?: '—' }} {{ $s->last_counted_at?->format('M j, Y') ?? '—' }} Adjust
No stock records yet. They are created automatically when components are added.
{{ $stock->links() }} @endsection