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

SUBTOTAL: {{ $inventarioingreso->subtotal }} {{ $inventarioingreso->tipomoneda }}

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

@if($inventarioingreso->tipomoneda == 'DOLARES')
@endif
@endsection