@extends('layouts.app') @section('content')
{{ __('CANCELAR PROGRAMACIÓN') }}
@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')
@endsection