| Número de Orden: | #{{ $orderNumber ?? 'ORD-' . strtoupper(uniqid()) }} |
| Fecha de Emisión: | {{ \Carbon\Carbon::now()->setTimezone('-05:00')->format('d \d\e F \d\e Y - H:i') }} |
| Cliente: | {{ $customerName }} |
| Email: | {{ $customerEmail }} |
| Producto / Servicio | Cantidad | Precio Unit. | Subtotal |
|---|---|---|---|
|
{{ $item['name'] }}
@if(isset($item['description']))
{{ $item['description'] }}
@endif
@if(isset($item['badge']))
{{ $item['badge']['text'] ?? 'Item' }}
@endif
|
{{ $item['quantity'] ?? 1 }} | ${{ number_format($item['price'], 2) }} | ${{ number_format($item['price'] * ($item['quantity'] ?? 1), 2) }} |
| No hay artículos en esta orden | |||
| Subtotal: | ${{ number_format($subtotal ?? 0, 2) }} |
| Envío: | ${{ number_format($shipping, 2) }} |
| Impuestos: | ${{ number_format($tax, 2) }} |
| Descuento: | -${{ number_format($discount, 2) }} |
| TOTAL: | ${{ number_format($total ?? 0, 2) }} |
Escanea el código QR para verificar tu orden