Meu Carrinho
@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
@if(empty($cart['items']))
@else
@foreach($cart['items'] as $index => $item)
@endforeach
@if($item['image'])
@else
@endif
{{ $item['type'] === 'combo' ? 'Combo' : 'Produto' }}
{{ $item['name'] }}
@if($item['variant'])
@foreach($item['variant'] as $variantName => $variantValue)
{{ $variantValue }}
@endforeach
@endif
@if($item['discount_price'] && $item['discount_price'] < $item['price'])
R$ {{ number_format($item['price'], 2, ',', '.') }}
R$ {{ number_format($item['discount_price'], 2, ',', '.') }}
@elseR$ {{ number_format($item['price'], 2, ',', '.') }}
@endif @if($item['pix_price'] && $item['pix_price'] < ($item['discount_price'] ?? $item['price']))PIX: R$ {{ number_format($item['pix_price'], 2, ',', '.') }}
@endifResumo do Pedido
@if($cart['coupon'])Cupom Aplicado
{{ $cart['coupon']['code'] }}
Subtotal
R$ {{ number_format($cart['subtotal'], 2, ',', '.') }}
@if($cart['discount'] > 0)
Desconto
- R$ {{ number_format($cart['discount'], 2, ',', '.') }}
@endif
@if($cart['free_shipping'])
Frete
GRÁTIS
@elseif($cart['shipping_cost'] > 0)
Frete
R$ {{ number_format($cart['shipping_cost'], 2, ',', '.') }}
@else
Frete
GRÁTIS
@endif
Total
R$ {{ number_format($cart['total'], 2, ',', '.') }}
No PIX
à vista
Faltam R$ {{ number_format($remaining, 2, ',', '.') }} para frete grátis
{{ number_format($percentage, 0) }}%
Pagamento seguro com Asaas