@extends('layouts.app') @section('content')
Pedido: {{ $detallePedido->pedido->id ?? '-' }}
Producto: {{ $detallePedido->producto->nombre ?? '-' }}
Variantes: {{ $detallePedido->variantes_texto ?? '-' }}
Cantidad: {{ $detallePedido->cantidad }}
Unidad de Medida: {{ $detallePedido->unidad_medida }}
Precio Unitario: ${{ number_format($detallePedido->precio_unitario, 0, ',', '.') }}
Subtotal: ${{ number_format($detallePedido->subtotal, 0, ',', '.') }}
Notas Especiales: {{ $detallePedido->notas_especiales }}
Editar Volver