@extends('layouts.app') @section('title', 'Productos') @section('subtitle', 'Catálogo, stock por bodega y operaciones de ingreso/traspaso') @section('content') @if(session('status'))
{{ session('status') }}
@endif

Crear nuevo producto

@csrf
Sin opción de Egreso/Entrega (se gestiona en menú Entregas)
@foreach($products as $product)
foto
{{ $product->description }} {{ $product->code }} @if($product->category){{ $product->category }}@endif
Unidad: {{ $product->unit }} · Mín: {{ $product->min_stock }} · Crítico: {{ $product->critical_stock }}
@foreach($product->warehouses as $wh) @endforeach
Bodega Stock Mínimo Crítico
{{ $wh->name }} {{ $wh->pivot->stock }} {{ $wh->pivot->min_stock }} {{ $wh->pivot->critical_stock }}

Ingreso a bodega

Campos adicionales: OC y Factura
@endforeach
@endsection