@extends('layouts.app') @section('content')
{{ __('ORDEN DE COMPRA') }}
@csrf @method('PUT')
@if (count($inventarioingreso->productos) > 0) @foreach ($inventarioingreso->productos as $producto) @php $cantidad_por_recibir = $producto->pivot->cantidad - $producto->pivot->cantidad_ingresada @endphp @endforeach
{{ __('SELECCIONAR') }} {{ __('INGRESAR CANTIDAD RECIBIDA') }} {{ __('PRODUCTO DEL REQUERIMIENTO') }} {{ __('CANTIDAD') }} {{ __('CANTIDAD RECIBIDA') }} {{ __('CANTIDAD POR RECIBIR') }} {{ __('FECHA DE CREACIÓN') }}
@if($cantidad_por_recibir != 0) @else COMPLETO @endif {{ $producto->nombre_producto }} {{ $producto->pivot->cantidad }} {{ $producto->pivot->cantidad_ingresada }} {{ $cantidad_por_recibir }} {{ $producto->pivot->created_at }}
@endif
@push('js') @endpush @endsection