@extends('layouts.app') @section('content')
| ID | Pedido | Producto | Variante | Cantidad | Unidad | Precio Unitario | Subtotal | Acciones |
|---|---|---|---|---|---|---|---|---|
| {{ $detalle->id }} | #{{ $detalle->pedido->id ?? '-' }} | {{ $detalle->producto->nombre ?? '-' }} | @if($detalle->variantes) {{ $detalle->variantes_texto }} @else - @endif | {{ $detalle->cantidad }} | {{ $detalle->unidad_medida }} | ${{ number_format($detalle->precio_unitario, 0, ',', '.') }} | ${{ number_format($detalle->subtotal, 0, ',', '.') }} |