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

{{ __('Checkout') }}

{{ __('Complete your order information below') }}

{{ __('Cart') }}
{{ __('Checkout') }}
{{ __('Complete') }}
@csrf
{{ __('Customer Information') }}
{{ __('Shipping Address') }}
{{ __('Billing Address') }}
{{ __('Shipping Method') }}
@foreach($shippingMethods as $method => $details)
first ? 'checked' : '' }} data-price="{{ $details['price'] }}">
@endforeach
{{ __('Payment Method') }}
@foreach($paymentMethods as $method => $details) @if($details['enabled'])
first ? 'checked' : '' }}>
@endif @endforeach
{{ __('Secure Payment') }}
{{ __('You will be redirected to a secure payment page powered by Moyasar to complete your payment.') }}
{{ __('Your payment information is encrypted and secure.') }}
{{ __('Order Notes (Optional)') }}
{{ __('Order Summary') }}
@foreach($cartItems as $item)
@if($item['image']) {{ $item['name'] }} @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.') }}

{{ __('SSL Secure') }}
{{ __('PCI Compliant') }}
{{ __('Moyasar') }}
{{ __('Processing...') }}
@endsection @push('styles') @endpush @push('scripts') @endpush