{{ translate('shopping_cart')}}

@php($shippingMethod=getWebConfig(name: 'shipping_method')) @php($cart=\App\Models\Cart::where(['customer_id' => (auth('customer')->check() ? auth('customer')->id() : session('guest_id'))])->get()->groupBy('cart_group_id'))
@if(count($cart)==0) @php($isPhysicalProductExist = false) @endif
{{ translate('product')}}
{{ translate('unit_price')}} {{ translate('qty')}}
{{ translate('total')}}
@foreach($cart as $group_key=>$group)
@foreach($group as $cart_key => $cartItem) @if ($shippingMethod=='inhouse_shipping')