Hola {{ $customer->name }},
Lamentamos informarte que tu pedido con referencia {{ $cart->sale_id ?? $cart->reference ?? 'N/A' }} ha sido cancelado.
| Producto | Cantidad | Precio Unitario | Total |
|---|---|---|---|
|
{{ $item->name }}
@if($item->salable && $item->salable->product_option_values->isNotEmpty())
@foreach ($item->salable->product_option_values as $optionValue)
{{ $optionValue->product_option->label }}: {{ $optionValue->name }} |
{{ $item->qty }} | ${{ number_format($item->price, 2, '.', ',') }} | ${{ number_format($item->qty * $item->price, 2, '.', ',') }} |
| Subtotal | ${{ number_format($cart->subtotal, 2, '.', ',') }} | ||
| {{ $offer->name }} @if ($offer->coupon_code) ({{ $offer->coupon_code }}) @endif | -${{ number_format($offer->amount, 2, '.', ',') }} | ||
| Envío | ${{ number_format($cart->shippment, 2, '.', ',') }} | ||
| Total del Pedido | ${{ number_format($cart->total, 2, '.', ',') }} | ||
Si tienes alguna pregunta o crees que esta cancelación es un error, por favor, no dudes en contactarnos inmediatamente, mencionando tu número de referencia: {{ $cart->sale_id ?? $cart->reference ?? 'N/A' }}.
Atentamente,
El equipo de {{ config('app.name') }}