@section('title', __('cart/cart.Cart')) @section('header-style', 'inner_nav') @push('style') @endpush @push('script') @endpush
@if(!$cart || $cart->items->count() == 0) @endif
@Lang('cart/cart.Cart')
@Lang('cart/cart.Billing address')
@Lang('cart/cart.Review')
@if($cart && $cart->items->count() > 0)

@Lang('cart/cart.Price')

@foreach($cart->items as $item)

{{$item->product->title}}

{{$item->package_price}} @Lang('custom.KWD')

@if(!empty($item->addon_options))
 

@Lang('cart/cart.Additional options')

@foreach($item->addon_options as $option)

{{ $option['addon_name_en'] }} {{ $option['option_id'] > 0 ? $option['addon_option_en'] : $option['other'] }}, {{ $option['price'] ?? 0 }} @Lang('custom.KWD')

@endforeach
@if($item->addon_price > 0)

{{$item->addon_price}} @Lang('custom.KWD')

@endif
@endif

@Lang('cart/cart.Time and location'):-

@if($item->note)
@if(!empty($item->note))

@Lang('cart/cart.Add Notes')

{{$item->note}}

@endif
@endif
@endforeach

@Lang('cart/cart.Order Summary')

@Lang('checkout/billing.Items')

    @foreach($cart->items as $item)
  • {{$item->product->title}} {{$item->package_price}} @Lang('custom.KWD')
  • @if($item->addon_price > 0)
  • @Lang('cart/cart.Additional options'){{$item->addon_price}} @Lang('custom.KWD')
  • @endif @endforeach

  • @Lang('cart/cart.Subtotal') {{$cart->sub_total}} @Lang('custom.KWD')
@Lang('cart/cart.Continue Shopping')
@else

@Lang('cart/cart.Your shopping cart is empty')

@Lang('cart/cart.Once added service to your shopping cart, you can check out of from here')

 @Lang('cart/cart.START SHOPPING') @endif