@extends('layouts.app') @section('content')
@if($ajuste->count() > 0)
Usuario:
{{$ajuste->user->name}}
@if($ajuste->fecha_ajuste != null)
@endif

@foreach($ajuste->ajustes as $ajuste_producto) @endforeach
Producto Cantidad Cantidad anterior Diferencia Precio Precio anterior Diferencia
{{$ajuste_producto->producto->nombre}}
{{$ajuste_producto->cant}} {{$ajuste_producto->old_cant}} {{$ajuste_producto->cant - $ajuste_producto->old_cant}} {{number_format($ajuste_producto->price)}} {{number_format($ajuste_producto->old_price)}} {{number_format($ajuste_producto->price - $ajuste_producto->old_price)}}
@else
No hay ajustes de inventario todavia.

@endif
@endsection