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

Inventario Stock

Ajuste de Inventario


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