@if ($cart?->qty) {{ $cart?->qty }} @endif

CARRITO

@if (count($cart?->cartItems ?? []))
@foreach ($cart->cartItems as $item)
@if ($item->salable->size)

Talla:

{{ $item->salable->size->name }}

@endif

${{ number_format($item->price, 2, '.', ',') }}

Total

${{ number_format($item->price * $item->qty, 2, '.', ',') }}

@endforeach
@else

Tu carrito esta vacio

@endif @if (count($cart?->cartItems ?? []))

Subtotal

${{ number_format($cart->subtotal, 2, '.', ',') }}

@if ($cart->offers->count() > 0)
@foreach ($cart->offers as $offer)
@if ($offer->coupon_code) @endif

{{ $offer->name }} @if ($offer->coupon_code) ({{ $offer->coupon_code }}) @endif

-${{ number_format($offer->amount, 2, '.', ',') }}

@endforeach
@endif

Total

${{ number_format($cart->total, 2, '.', ',') }}

COMPRAR AHORA
¿Tienes un cupón?
Aplicar
@endif