@lang('labels.frontend.cart.price')
({{Cart::getContent()->count()}}{{(Cart::getContent()->count() > 1) ? ' '.trans('labels.frontend.cart.items') : ' '.trans('labels.frontend.cart.item')}})
@if(isset($total))
{{$appCurrency['symbol'].' '.$total}}
@endif
@if(Cart::getConditionsByType('coupon') != null)
@foreach(Cart::getConditionsByType('coupon') as $condition)
{{ $condition->getValue().' '.$condition->getName()}}
{{ $appCurrency['symbol'].' '.number_format($condition->getCalculatedValue($total),2)}}
@endforeach
@endif
@if($taxData != null)
@foreach($taxData as $tax)
{{ $tax['name']}}
{{ $appCurrency['symbol'].' '.number_format($tax['amount'],2)}}
@endforeach
@endif
@lang('labels.frontend.cart.total_payable')
{{$appCurrency['symbol'].' '.number_format(Cart::session(auth()->user()->id)->getTotal(),2)}}