@extends('theme::layouts.app') @section('content')

{{ __('Your Settings Successfully Updated') }}

1 {{ __('Delivery Details') }}

{{ __('Service Not Available On Your Area') }}
@if($ordertype == 1)
@endif

2 {{ __('Select Payment Method') }}

{{ __('Credit / Debit Card') }}

@csrf

{{ __('PAY BY CASH ON DELIVERY') }}

@csrf

{{ __('Consider payment upon ordering for contactless delivery') }}

{{ __('Your Order') }} {{ Session::get('restaurant_id')['name'] }}

@foreach(Cart::instance('cart_'.Session::get('restaurant_cart')['slug'])->content() as $cart)
{{ $cart->qty }} x{{ $cart->name }}
{{ $currency->value }}: {{ number_format($cart->price,2) }}
@endforeach
{{ __('Subtotal') }} {{ $currency->value }}: {{ Cart::instance('cart_'.Session::get('restaurant_cart')['slug'])->priceTotal() }}
@if(Session::has('coupon'))
{{ __('Discount') }} {{ Session::get('coupon')['percent'] }}%
@endif @if($ordertype == 1)
{{ __('Delivery fee') }} {{ $currency->value }}:
@endif
{{ __('Total(Incl. VAT)') }} {{ $currency->value }}: {{ Cart::instance('cart_'.Session::get('restaurant_cart')['slug'])->total() }}
@if(!Session::has('coupon'))
@csrf
@endif
@endsection @push('js') @if($ordertype == 1) @endif @endpush