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

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

@csrf
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

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

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

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

@if(env('STRIPE_KEY') != '')
@endif @if ($credentials != null) @if($credentials->paypal_status == 'enabled')
@endif @if($credentials->toyyibpay_status == 'enabled')
@endif @if($credentials->razorpay_status == 'enabled')
@endif @if($credentials->instamojo_status == 'enabled')
@endif @endif

{{ __('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
{{ __('Tax fee') }} {{ $currency->value }}: {{ Cart::instance('cart_'.Session::get('restaurant_cart')['slug'])->tax() }}
{{ __('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