✅ No hay productos con stock pendiente
| Producto | Presentación | Stock Disp. | Pendiente | Origen (Venta) | Cliente | Vendedor |
|---|---|---|---|---|---|---|
| {{ $p->producto }} | {{ $p->presentacion ?? '' }} | {{ $p->stock_disponible }} | {{ $p->stock_pendiente }} | @forelse($p->origen as $o) @empty - @endforelse |
@forelse($p->origen as $o)
{{ $o->cliente }} @if($o->rif)
@empty
-
@endforelse
{{ $o->rif }}@endif |
@forelse($p->origen as $o)
{{ $o->vendedor }}
@empty
-
@endforelse
|
| Pedido | Producto | Cliente | Vendedor | Solicitado | Stock Disp. | Faltante |
|---|---|---|---|---|---|---|
| #{{ $item->pedido_id }} | {{ $item->producto }} | {{ $item->cliente }} @if($item->rif) {{ $item->rif }}@endif |
{{ $item->vendedor }} | {{ $item->solicitado }} | {{ $item->stock_disponible }} | {{ $item->faltante }} |