{{ __('Shopping cart') }}
    @if ($cart && $cart->orderItems && $cart->orderItems->isNotEmpty()) @forelse ($cart->orderItems as $item)
  • ×
    {{ app()->getLocale() === 'ar' ? $item->product->name_ar : $item->product->name }}

    @if ($item->color) {{ app()->getLocale() === 'ar' ? $item->color->name_ar : $item->color->name }} @else @endif

    {{ $item->quantity }} × {{ app()->getLocale() === 'ar' ? 'دأ ' : 'JD' }}{{ $item->price }}
  • @empty

    {{ __('No products in the cart.') }}

    {{ __('Return To Shop') }}
    @endforelse @endif