@extends('layouts.front.front') @section('maincontent')

Your Shopping Cart

@if (sizeof($carts) > 0)
    @foreach ($carts as $cart) @php $pn = $cart['name']; $slug = str_slug($pn); $purl = route('front.shop.shop-product-details', ['slug' => $slug, 'code' => $cart['article'], 'color' => $cart['color'], 'pid' => $cart['ref_id']]); $purl = str_replace('#', '__hash__', $purl); @endphp
  • Color: {{ $cart['color'] }}
    Size: {{ $cart['size'] }}
    Qty.: {{ $cart['qty'] }}
    {{ $homepageModel->formatCurrencyWithDecimal($cart['selling_price'] * $cart['qty']) }}
    wishlist Remove
  • @endforeach
@else
Cart is empty!
@endif

*Once your order has been placed no subsequent changes can be made in it.

*Shipping cost may vary depending on the delivery destination.

*Please check the final amount on the order summary page before completing the payment.

*An item's price may vary according to the size selected.

Cart Summary

Cart Total {{ $homepageModel->formatCurrencyWithDecimal($cartInfo['cartDetails']['totalMrp']) }}
@foreach($discounts as $k => $v) @if($v > 0)
{{ $k }} {{ $homepageModel->formatCurrencyWithDecimal($v) }}
@endif @endforeach @foreach($totals as $k => $v) @if($v > 0)
{{ $k }} {{ $homepageModel->formatCurrencyWithDecimal($v) }}
@endif @endforeach
Shipping {{ $homepageModel->formatCurrencyWithDecimal($cartShipping) }}

Shipping charges to be calculated on Checkout

TOTAL PAYABLE {{ $homepageModel->formatCurrencyWithDecimal($totals['Payable']) }}
@endsection