@extends('admin.layout') @section('content')
Settings
@csrf

With each order from Table Token No. will be increased by one.
You can change the starting point anytime.

@csrf

If you disable it, then you will be able to set shipping / delivery charges without postal code.

@if ($errors->has('postal_code'))

{{$errors->first('postal_code')}}

@endif

This will decide whether delivery date / time fields will be shown in checkout page

@if ($errors->has('delivery_date_time_status'))

{{$errors->first('delivery_date_time_status')}}

@endif

This will decide whether delivery date / time fields are required or optional

@if ($errors->has('delivery_date_time_required'))

{{$errors->first('delivery_date_time_required')}}

@endif

If you want to enable any whatsapp notification, then you have to setup twilio credentials from

Here @if ($errors->has('whatsapp_home_delivery'))

{{$errors->first('whatsapp_home_delivery')}}

@endif

If you want to enable any whatsapp notification, then you have to setup twilio credentials from

Here @if ($errors->has('whatsapp_pickup'))

{{$errors->first('whatsapp_pickup')}}

@endif

If you want to enable any whatsapp notification, then you have to setup twilio credentials from

Here @if ($errors->has('whatsapp_on_table'))

{{$errors->first('whatsapp_on_table')}}

@endif

If you want to enable any whatsapp notification, then you have to setup twilio credentials from

Here

if this is enabled, then customers will be notified via Whatsapp once order status is changed

@if ($errors->has('whatsapp_order_status_notification'))

{{$errors->first('whatsapp_order_status_notification')}}

@endif
@endsection