@extends('layouts.app') @section('content') @extends('inventario.menu')

Inventario Materia Prima

Salidas de Inventario


@foreach ($inventario as $op) @if($op->total>0) @endif @endforeach
ID Fecha Producto Bobinas Kilos
{{$op->id_producto}} {{date("d/m/Y h:i:s", strtotime($op->created_at))}} {{$op->producto->nombre}} {{number_format(($op->total/$op->producto->factor_conversion_kilos),2,'.',',')}} {{number_format(($op->total),2,'.',',')}}
@endsection