{{ __('Shopping Cart') }}
@php $total = 0; @endphp @if (cartCountItem() != 0) @foreach (cartContentSideShow() as $item)
cart

{{ $item->name }}

-
+
{{ currencyConverter($item->weight * $item->qty) }} {{ currencyConverter($item->price * $item->qty) }}
@php $total += $item->price * $item->qty; @endphp @endforeach @else
empty-box

{{ __('Your Cart List Is Empty') }}

{{ __('Cart is empty. Please go to your home page for listing it.') }}

@endif

{{ __('Total') }}

{{ currencyConverter($total) }}

{{ __('Proceed To Checkout') }}
@push('post_script') @endpush