{{ config('app.name') }}
Passo 2 de 2: Carrinho Pagamento

Dados Pessoais

@csrf

Endereço de Entrega

Forma de Pagamento

@if($asaasPixEnabled) @endif @if($asaasCreditCardEnabled) @endif @if($asaasBoletoEnabled) @endif

Resumo do Pedido

@foreach($cart['items'] as $item)
@if($item['image']) {{ $item['name'] }} @else
@endif

{{ $item['name'] }}

Qtd: {{ $item['quantity'] }}

R$ {{ number_format(($item['discount_price'] ?? $item['price']) * $item['quantity'], 2, ',', '.') }}

@endforeach
Subtotal R$ {{ number_format($cart['subtotal'], 2, ',', '.') }}
@if($cart['discount'] > 0)
Desconto - R$ {{ number_format($cart['discount'], 2, ',', '.') }}
@endif
Frete {{ $cart['free_shipping'] ? 'GRÁTIS' : 'R$ ' . number_format($cart['shipping_cost'], 2, ',', '.') }}
Total R$ {{ number_format($cart['total'], 2, ',', '.') }}
@if($pixDiscount > 0)

Economize R$ {{ number_format($cart['total'] - $cart['pix_total'], 2, ',', '.') }} no PIX

@endif
Ambiente seguro