@extends('layouts.front.app') @section('css') @endsection @section('content') @if(config('site.domain') === 'operagarden') @include(config('site.domain').'.layouts.front.menu-banner') @endif
{{ csrf_field() }}
ENTREGA DO PEDIDO:


DATA DA RETIRADA:

CARTÃO DE PRESENTE:

Resumo


@if (intval(config('site.so_orcamento')) === 1)
@else
@endif @foreach($getCartItems as $product)
{{ $product->name }}
@if(isset($product->pivot)) {{ $product->pivot->quantity }} x @endif
{{ config('cart.currency_symbol') }} {{ number_format($product->price, 2, ',', '.') }}

@endforeach
@if ( config('site.so_orcamento') === 0)
Sub Total
{{ config('cart.currency_symbol') }} {{ number_format(floatVal($cartTotal), 2, ',', '.') }}

Frete
@endif
Total
{{ config('cart.currency_symbol') }} {{ number_format(floatVal($cartTotal), 2, ',', '.') }}

@if ( config('site.so_orcamento') === 0) {{-- Opções de parcelamento --}}
Opções de Parcelamento
@endif
@endsection @section('js') @endsection