¡Hola {{ $customer->name }}!

Gracias por tu pedido en {{ config('app.name') }}. Tu pedido con referencia {{ $cart->sale_id ?? 'N/A' }} está actualmente pendiente de pago.

Resumen del Pedido

@foreach ($cart->cartItems as $item) @endforeach @if ($cart->offers->count() > 0) @foreach ($cart->offers as $offer) @endforeach @endif
Producto Cantidad Precio Unitario Total
{{ $item->name }} @foreach ($item->salable->product_option_values as $optionValue)

{{ $optionValue->product_option->label }}:

{{ $optionValue->name }}

@endforeach
{{ $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, '.', ',') }}

Información del Cliente

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

Dirección de Envío:

{{ $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 }}

@else

No se ha especificado una dirección de envío.

@endif

Instrucciones para Completar el Pago

{!! $instructions !!}

Si tienes alguna pregunta, no dudes en contactarnos.

Gracias,
{{ config('app.name') }}