@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']) !!}
@endif
@endforeach
{!! Form::close() !!}
@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'] . '')
@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')) !!}