@extends('layouts.app')
@section('title', 'Inventory - UniformFlow')
@section('page-heading', 'Inventory')
@section('content')
Create uniform types and manage stock for every size.Uniform inventory.
| Uniform | Code | Size | New | Returned | Available | Unit value | Total value | Status |
|---|---|---|---|---|---|---|---|---|
| {{ $item->name }} | {{ $item->code }} | {{ $variant->size }} | {{ $variant->new_quantity }}new units | {{ $variant->returned_quantity }}returned | {{ $variant->quantity }} | {{ number_format($variant->unit_value, 2) }} | {{ number_format($variant->quantity * $variant->unit_value, 2) }} | {{ $variant->quantity === 0 ? 'Out of stock' : ($variant->quantity <= $variant->reorder_level ? 'Low stock' : 'Healthy') }} |
| Add your first uniform type above. | ||||||||