@extends('website.layouts.master') @section('content')
@if ($errors->has('error'))
{{ $errors->first('error') }}
@endif
@csrf
@lang('checkout.delivery_address')
@lang('checkout.edit')
{{-- //input client_address_id --}}
@lang('checkout.receive_address')
@lang('checkout.edit')
@lang('checkout.choose_payment')
{{-- Delivery Payment Options --}}
@php $firstChecked = false; @endphp @foreach (getBranchPolicyPayment($branchId, 'delivery') as $policy) @include('website.checkout.payment-option', [ 'policy' => $policy, 'firstChecked' => &$firstChecked, 'name' => 'payment_method', ]) @endforeach
{{-- Takeaway Payment Options --}}
@php $firstChecked = false; @endphp @foreach (getBranchPolicyPayment($branchId, 'takeaway') as $policy) @include('website.checkout.payment-option', [ 'policy' => $policy, 'firstChecked' => &$firstChecked, 'name' => 'payment_method2', ]) @endforeach
@php $firstChecked = false; @endphp @foreach (getBranchPolicyPayment($branchId, 'reservation_with_order') as $policy) @include('website.checkout.payment-option', [ 'policy' => $policy, 'firstChecked' => &$firstChecked, 'name' => 'payment_method2', ]) @endforeach
حدد معاد تجهيز الوجبات
@if (request()->getHttpHost() === 'erpsystem.testdomain100.online'|| request()->getHttpHost() === 'erp.test')
سياسة الحجز

{!! $shortText !!}

@endif
@lang('checkout.order_summary')
@endsection @push('scripts') @include('website.checkout.js') @include('website.cart.global') @endpush