{{__('coupons.My Cart')}}

@php $totalSum=0; if (!Auth::check()) { $carts=[]; if (session()->has('cart')){ foreach (session()->get('cart') as $key => $cart) { // dd($cart); $carts[]=$cart; } } } @endphp @if(count($carts)!=0) @foreach($carts as $key=>$cart) @php $price = $cart['price']; $totalSum = $totalSum + @$price; @endphp
{{getPriceFormat($price)}}
@endforeach @else

{{__('common.No Item found')}}

@endif
@if(count($carts)!=0) @endif