Loading
@php $getAddToCartTotalItem=getAddToCartTotalItem(); $totalCartItem=count($getAddToCartTotalItem); $totalPrice=0; @endphp
SHOPPING CART {{$totalCartItem}}
@if($totalCartItem>0)
    @foreach($getAddToCartTotalItem as $cartItem) @php $totalPrice=$totalPrice+($cartItem->qty*$cartItem->price) @endphp
  • img

    {{$cartItem->name}}

    {{$cartItem->qty}} * Rs {{$cartItem->price}}

  • @endforeach
  • Total Rs {{$totalPrice}}
Checkout @endif
@section('container') @show