@extends('loja.default', ['title' => 'Pagamento']) @section('css') @endsection @section('content')

Seu Pedido

PRODUTO
SUBTOTAL
@foreach($carrinho->itens as $i)
{{ number_format($i->quantidade, 0) }}x {{ $i->produto->nome }}
R${{ __moeda($i->sub_total) }}
@endforeach
Entrega
{{ $carrinho->tipo_frete != 0 ? $carrinho->tipo_frete : ''}} R${{ __moeda($carrinho->valor_frete) }}
TOTAL
R${{ __moeda($carrinho->valor_total) }}
@if($carrinho->endereco)

Endereço de entrega

{{ $carrinho->endereco->info }}
@endif
@if(in_array('Pix', $tiposPagamento))
PIX
@endif @if(in_array('Boleto', $tiposPagamento))
BOLETO
@endif @if(in_array('Cartão de credito', $tiposPagamento))
CARTÃO DE CRÉDITO
@endif @if(in_array('Depósito bancário', $tiposPagamento))
DEPÓSITO BANCÁRIO/TRANSFERÊNCIA
@endif

Pagamento com PIX

@csrf

Pagamento com BOLETO

@csrf

Pagamento com CARTÃO DE CRÉDITO

@csrf

Pagamento com Deposito bancário/transferência

@csrf
{!! $config->dados_deposito !!}

@endsection @section('js') @endsection