@extends('metronic.base') @section('extracss') @endsection @section('extrajs') @endsection @section('titulo') Orden de Producción @endsection @section('content') @include('sessions')

Matriz de componentes

@if (count($receta) > 0) @foreach ($receta as $item) @endforeach
Código del material Nombre del material Cantidad/Producto Cantidad total Cantidad en bodega Total reservado Qty. disponible fabricación
{{ $item->codigoPro }} {{ $item->producto }} {{ number_format($item->cantidad, 2) }} {{ number_format($item->cantidad * $detail->cantidad, 2) }} {{ number_format($item->cantidad_inv_bodega, 2) }} {{ number_format($item->total_reservado, 2) }} {{ number_format($item->cantidad_disponible_para_fabricacion, 2) }}
@else

Producto sin matriz de componentes

Para crear una matriz de componentes y agregarle su respectivo detalle, de clic en el siguiente enlace
@endif
@endsection