INGRESO DE MERCANCIA POR COMPRA
FOLIO: {{ $detalle[0]->folio }}
USUARIO: {{ $detalle[0]->usuario }}
FOLIO FACTURA: {{ $detalle[0]->folioproveedor }}
UUID: {{ strtoupper($detalle[0]->uuid) }}
FECHA FACTURA: {{ $detalle[0]->fechaproveedor }}
FECHA RECEPCION: {{ $detalle[0]->fechaRecepcion }}
FECHA CAPTURA: {{ $detalle[0]->fecha }}
HORA CAPTURA: {{ $detalle[0]->hora }}
PROVEEDOR: {{ $detalle[0]->proveedor }}
PLAZO: {{ $detalle[0]->plazo }} DIAS || PARCIALIDADES: {{ $detalle[0]->parcialidades }}
ALMACEN: {{ $detalle[0]->almacen }}


Código Descripción Series Cto Selec Cto Unit. Cant. Subtotal IVA Desc TOTAL


@foreach($detalle as $articulo) @endforeach
{{ $articulo->codigo }} {{ $articulo->descripcion }} {{ $articulo->serie }} $ {{ number_format($articulo->costoseleccionado,2,'.',',') }} $ {{ number_format($articulo->costo,2,'.',',') }} {{ $articulo->cantidad }} $ {{ number_format($articulo->articulosubtotal,2,'.',',') }} $ {{ number_format($articulo->articuloiva,2,'.',',') }} $ {{ number_format($articulo->articulodescuento,2,'.',',') }} $ {{ number_format($articulo->articulototal,2,'.',',') }}


SUBTOTAL: $ {{ number_format($detalle[0]->subtotal,2) }}
IVA: $ {{ number_format($detalle[0]->iva,2) }}
DESCUENTO: $ {{ number_format($detalle[0]->descuento,2) }}
TOTAL: $ {{ number_format($detalle[0]->total,2) }}


@foreach($observaciones as $key => $observacion) @endforeach
OBSERVACIONES
{{ $observaciones[$key] }}