@php $items = $getRecord() ->cartItems() ->with(['salable']) ->get(); @endphp
| Producto | Cantidad | Precio Unitario | Total |
|---|---|---|---|
|
{{ $item->name }}
@if ($sku || $legacyCode || $color || $size)
@if ($sku)
@endif
SKU: {{ $sku }}
@endif
@if ($legacyCode)
Código: {{ $legacyCode }}
@endif
@if ($color)
Color: {{ $color }}
@endif
@if ($size)
Talla: {{ $size }}
@endif
|
{{ $item->qty }} | ${{ number_format((float) $item->price, 2, '.', ',') }} | ${{ number_format((float) $item->price * (int) $item->qty, 2, '.', ',') }} |
| No hay artículos en este pedido. | |||