Gracias por tu pedido en {{ config('app.name') }}. Tu pedido con referencia {{ $cart->sale_id ?? 'N/A' }} está actualmente pendiente de pago.
| Producto | Cantidad | Precio Unitario | Total |
|---|---|---|---|
|
{{ $item->name }}
@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 | ${{ number_format($cart->total, 2, '.', ',') }} | ||
Nombre: {{ $customer->name }}
Email: {{ $customer->email }}
@if ($customer->phone)Teléfono: {{ $customer->phone }}
@endif @if ($cart->shippment_method && $cart->shippment_method->address) @php $shippingAddress = $cart->shippment_method->address; @endphp{{ $shippingAddress->address }}, {{ $shippingAddress->number }}, {{ $shippingAddress->department }}
@if ($shippingAddress->reference) - {{ $shippingAddress->reference }} @endif @if ($shippingAddress->between_street_1 || $shippingAddress->between_street_2) ({{ $shippingAddress->between_street_1 }}{{ $shippingAddress->between_street_2 ? ', ' . $shippingAddress->between_street_2 : '' }}) @endif{{ $shippingAddress->city }}{{ $shippingAddress->state ? ', ' . $shippingAddress->state : '' }}, {{ $shippingAddress->zip_code }}
{{ $shippingAddress->country }}
@elseNo se ha especificado una dirección de envío.
@endifSi tienes alguna pregunta, no dudes en contactarnos.
Gracias,
{{ config('app.name') }}