@extends('layouts.app') @section('content')
{{ __('CANCELAR ORDEN DE COMPRA A CUENTA') }}
@if (count($inventarioingreso->productos) > 0) @foreach ($inventarioingreso->productos as $producto) @endforeach
{{ __('PRODUCTO DEL REQUERIMIENTO') }} {{ __('CANTIDAD') }} {{ __('PRECIO') }} {{ __('SUBTOTAL') }} {{ __('FECHA DE CREACIÓN') }}
{{ $producto->nombre_producto }} {{ $producto->pivot->cantidad }} {{ $producto->pivot->precio }} {{ $producto->pivot->subtotal }} {{ $producto->pivot->created_at }}
@endif

SUBTOTAL: {{ $inventarioingreso->subtotal }}

COSTO TOTAL: {{ $inventarioingreso->total }}

@csrf @method('PUT')
{{ __('FECHA DE PAGO O ADELANTO') }}
{{ __('MONTO') }}
{{ __('COMPROBANTE CORRELATIVO') }}
@if (count($inventarioingreso->pagosacuenta) > 0) @foreach ($inventarioingreso->pagosacuenta as $pago) @endforeach
{{ __('FECHA DE PAGO O ADELANTO A CUENTA') }} {{ __('MONTO') }} {{ __('COMPROBANTE CORRELATIVO') }}
{{ $pago->fecha_pago }} {{ $pago->monto }} {{ $pago->comprobante_correlativo }}
@endif
@if ($errors->any())
@endif @push('js') @endpush @endsection