@extends('admin.layout') @section('content')

{{ __('CANCELAR ORDEN DE COMPRA') }}
@if ($inventarioingreso->proveedor)
@endif
@if (count($inventarioingreso->productos) > 0) @foreach ($inventarioingreso->productos as $producto) @endforeach
{{ __('PRODUCTO') }} {{ __('FECHA DE CREACIÓN') }} {{ __('CANTIDAD') }} {{ __('VALOR UNITARIO') }} {{ __('SUBTOTAL') }}
{{ $producto->nombre_producto }} {{ $producto->pivot->created_at }} {{ $producto->pivot->cantidad }} {{ $producto->pivot->precio }} {{$producto->pivot->subtotal,2}}
SUBTOTAL:
{{ number_format($inventarioingreso->subtotal, 2) }}
@endif

IMPORTE TOTAL: {{ $inventarioingreso->total }} {{ $inventarioingreso->tipomoneda }}

@csrf @method('PUT')
@if ($inventarioingreso->tipomoneda == 'DOLARES')
@endif
@stop @push('js') @endpush