@extends('layouts.app') @section('title', __('Shopping Cart')) @section('content')

{{ __('Shopping Cart') }}

@if(count($cartItems) > 0)
@foreach($cartItems as $item)
@if($item['image']) {{ $item['name'] }} @else
@endif
{{ $item['name'] }}

{{ __('Stock') }}: {{ $item['stock'] }} {{ __('items') }}

{{ number_format($item['price_including_vat'], 2) }} {{ __('SAR') }}
{{ __('incl. VAT') }}
{{ number_format($item['total'], 2) }} {{ __('SAR') }}
@endforeach
{{ __('Continue Shopping') }}
{{ __('Order Summary') }}
{{ __('Subtotal') }}: {{ number_format($cartTotal, 2) }} {{ __('SAR') }}
{{ __('Shipping') }}: {{ __('Free') }}

{{ __('Total') }}:
{{ number_format($cartTotal, 2) }} {{ __('SAR') }}
{{ __('Proceed to Checkout') }}
@else

{{ __('Your cart is empty') }}

{{ __('Looks like you haven\'t added any items to your cart yet.') }}

{{ __('Start Shopping') }}
@endif
{{ __('Loading...') }}
@endsection @push('styles') @endpush @push('scripts') @endpush