{{ __('Discount Codes') }}
{{ __('Cart Summary') }}
{{ __('Edit') }}{{ __('Item') }} | # | {{ __('Price') }} |
---|---|---|
{{ \Illuminate\Support\Str::limit(productLangConverter($item->id), 48, $end='...') }} | {{ $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())) }} --}} {{-- @if (auth()->user() )
- {{ __('Member discount') }} {{ user_discount() . '%' }} @endif @if (!empty(Session::get('CouponAmount')) )
- {{ __('Coupon Discount (-)') }} {{ Session::get('CouponAmount') . '%' }} @endif --}} @if (auth()->user() && user_discount() >= Session::get('CouponAmount'))
- {{ __('Member discount') }} {{ user_discount() . '%' }} @elseif(!empty(Session::get('CouponAmount')) )
- {{ __('Coupon Discount (-)') }} {{ Session::get('CouponAmount') . '%' }} @endif
{{ __('Total Cost') }} {{ currencyConverter(\Cart::subtotal() + allsetting()['shipping_charge'] + tax_amount(\Cart::subtotal()) - Session::get('CouponAmount')) }}
{{ __('note : prices include tax') }}