{{ __('Discount Codes') }}
{{ __('Cart Summary') }}
{{ __('Edit') }}Item | # | Price |
---|---|---|
{{ productLangConverter($item->id) }} | {{ $item->qty }} | {{ currencyConverter($item->price * $item->qty) }} |
-
@php
$total = 0;
@endphp
@foreach ($content as $item)
-
{{ $item->qty }} {{ productLangConverter($item->id) }}
--}} {{--{{ __('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
- {{ __('Subtotal') }} {{ currencyConverter(\Cart::subtotal()) }}
- {{ __('Shipping Cost') }}
- {{ __('VAT/Tax') }} {{ currencyConverter(tax_amount(\Cart::subtotal())) }}
- {{ __('Member discount') }} @if (auth()->user()) {{ user_discount() . '%' }} @endif @if (!empty(Session::get('CouponAmount')))
- {{ __('Coupon Discount (-)') }} {{ currencyConverter(Session::get('CouponAmount')) }} @endif