@foreach($cartItems as $item)
@if($item['image'])
![{{ $item['name'] }}]({{ asset('storage/' . $item['image']) }})
@else
@endif
{{ $item['name'] }}
{{ __('Qty') }}
: {{ $item['quantity'] }}
{{ number_format($item['total'], 2) }} {{ __('SAR') }}
@endforeach
{{ __('Subtotal') }}:
{{ number_format($cartTotal, 2) }} {{ __('SAR') }}
{{ __('Shipping') }}:
{{ number_format($shippingAmount, 2) }} {{ __('SAR') }}
{{ __('Tax (15%)') }}:
{{ number_format($taxAmount, 2) }} {{ __('SAR') }}
{{ __('Total') }}:
{{ number_format($grandTotal, 2) }} {{ __('SAR') }}
{{ __('By proceeding, you agree to our Terms & Conditions and Privacy Policy.') }}
{{ __('PCI Compliant') }}