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

Carrinho


@forelse($item->itens as $i)


@csrf @method('put') Quantidade
+ -


@csrf @method('delete')
@empty

Seu carrinho ainda está vazio

@endforelse
@if(sizeof($item->itens) > 0)

Subtotal: R$ {{ __moeda($item->valor_total) }}

@csrf
@if($dataFrete != null)
Seus endereços cadastrados
{!! $dataFrete !!} @else @if($config->habilitar_retirada)
Retirar na loja
@endif @if($config->frete_gratis_valor > 0 && $config->frete_gratis_valor <= $item->valor_total)
Frete grátis
@endif @endif
CONTINUAR COMPRANDO
@endif
@endsection @section('js') @endsection