@extends('layouts.app') @section('css') @endsection @section('content')
@endif
{{ $pedidoProducto->producto->nombre ?? 'N/A' }}
{{ $pedidoProducto->cantidad }}
{{ $pedidoProducto->cantidad_recibida }}
{{ $pedidoProducto->precio_unitario }}
@php $subtotal = $pedidoProducto->cantidad_recibida * $pedidoProducto->precio_unitario; $total += $subtotal; @endphp {{ number_format($subtotal, 2) }}
No hay productos en este pedido.
@endif
@endif
{{ $pedidoProducto->consumible->nombre ?? 'N/A' }}
{{ $pedidoProducto->cantidad }}
{{ $pedidoProducto->cantidad_recibida }}
{{ $pedidoProducto->precio_unitario }}
@php $subtotal = $pedidoProducto->cantidad_recibida * $pedidoProducto->precio_unitario; $total += $subtotal; @endphp {{ number_format($subtotal, 2) }}
No hay consumibles en este pedido.
@endif