@lang('shop/cart.document_title')

 

@include('flash::message')
@php $cart = Cart::session(Auth::user()->id)->getContent()->first(); $subtotal = Cart::session(Auth::user()->id)->getSubTotalWithoutConditions(false); $total = Cart::session(Auth::user()->id)->getTotal(false); $taxes = $total-$subtotal; @endphp {!! Form::open(['route' => 'cart/process','method' => 'POST','class' => '','role' => 'form','id'=>'form_process']) !!}

@lang('shop/cart.document_subtitle')

@lang('shop/cart.text_payment_method')

@foreach ($payment_platforms as $payment_platform) @if($payment_platform['active']) @endif @endforeach

@foreach ($payment_platforms as $payment_platform) @if($payment_platform['active'])
@includeIf('layouts.partials.cart.collapse_' . $payment_platform['code'] . '')
@endif @endforeach
@lang('shop/cart.text_notices')
  • {!! config('app.payment_notice_1') !!}
  • {!! config('app.payment_notice_2') !!}
  • {!! sprintf(config('app.payment_notice_3'),config('app.account_days_request_customer_invoice')) !!}

@lang('shop/cart.text_resume')

{{$cart->name}}

{{__('shop/cart.text_subtotal')}}: {{ \App\Helpers\Helper::numberFormatMoney($subtotal) }}

{{__('shop/cart.text_taxes')}}: {{ \App\Helpers\Helper::numberFormatMoney($taxes) }}

{{mb_strtoupper(__('shop/cart.text_total'))}}: {{ \App\Helpers\Helper::numberFormatMoney($total) }}

{!! Form::close() !!}