{{ __('Cart Summary') }}
{{ __('Edit') }}-
@php
$total = 0;
@endphp
@foreach ($content as $item)
-
{{ $item->qty }} {{ $item->name }}
{{ __('Size:') }} {{ is_null($item->options->size) ? __('Free Size') : $item->options->size }}
{{ __('Color:') }} @if (is_null($item->options->color)) {{ __('Any Color') }} @else @endif
{{ currencyConverter($item->price * $item->qty) }}
@endforeach
{{ __('Discount Codes') }}
- {{ __('Subtotal') }} {{ currencyConverter(\Cart::subtotal()) }}
- {{ __('Shipping Cost') }}
- {{ __('VAT/Tax ') }} {{ currencyConverter(tax_amount(\Cart::subtotal())) }} @if (!empty(Session::get('CouponAmount')))
- {{ __('Coupon Discount (-)') }} {{ currencyConverter(Session::get('CouponAmount')) }} @endif