{{-- Cart Items --}}
@foreach($cart as $key => $item)
@php
$itemImg = $item['image'] ?? '';
$itemImgUrl = str_starts_with($itemImg, 'http') ? $itemImg : ($itemImg ? asset($itemImg) : asset('assets/images/plan-1.png'));
@endphp
{{ $item['name'] }}
{{ __('Qty') }}: {{ $item['quantity'] }}
@if(!empty($item['options']['mealType']))
• {{ __(ucfirst($item['options']['mealType'])) }}
@endif
@if(!empty($item['options']['calories']))
• {{ $item['options']['calories'] }} {{ __('Kcal') }}
@endif
SAR {{ number_format($item['price'] * $item['quantity'], 2) }}
@endforeach
{{-- Payment Summary --}}
{{ __('Payment Summary') }}
{{ __('Items Total') }} ({{ __('Incl. VAT') }})
SAR
{{ __('Delivery fees') }}
SAR
{{ __('Discount') }}
- SAR
{{ __('VAT included') }} ({{ (int)(\App\Models\Settings\Setting::getValue('vat_rate', 15)) }}%)
SAR
{{-- Total --}}
{{ __('Total') }} ({{ __('Incl. VAT') }})
SAR
{{-- Proceed to Payment Button --}}