Ürün stoklarını görüntüleyin ve güncelleyin.
| Ürün | Toplam | Rezerve | Mevcut | Durum |
|---|---|---|---|---|
|
{{ $inv->product->name }}
{{ $inv->product->sku }}
|
{{ $inv->stock_qty }} | {{ $inv->reserved_qty }} | {{ $inv->stock_qty - $inv->reserved_qty }} |
@php
$available = $inv->stock_qty - $inv->reserved_qty;
$color = $available > 20 ? 'green' : ($available > 0 ? 'yellow' : 'red');
@endphp
|
| Stok kaydı yok. | ||||