@extends('layouts.admin.app') @section('title', translate('FCM Settings')) @push('css_or_js') @endpush @section('content')

{{ translate('third_party') }}

@include('admin-views.business-settings.partials._3rdparty-inline-menu')
@csrf @php($key = \App\Models\BusinessSetting::where('key', 'push_notification_key')->first()->value)
{{ translate('Push Messages') }}
@csrf
@php($opm = \App\Models\BusinessSetting::where('key', 'order_pending_message')->first()->value) @php($data = json_decode($opm, true))
{{ translate('order_Pending_Message') }}
@php($ocm = \App\Models\BusinessSetting::where('key', 'order_confirmation_msg')->first()->value) @php($data = json_decode($ocm, true))
{{ translate('order confirmation message') }}
@php($oprm = \App\Models\BusinessSetting::where('key', 'order_processing_message')->first()->value) @php($data = json_decode($oprm, true))
{{ translate('order processing message') }}
@php($ofdm = \App\Models\BusinessSetting::where('key', 'out_for_delivery_message')->first()->value) @php($data = json_decode($ofdm, true))
{{ translate('order out for delivery message') }}
@php($odm = \App\Models\BusinessSetting::where('key', 'order_delivered_message')->first()->value) @php($data = json_decode($odm, true))
{{ translate('order delivered message') }}
@php($dba = \App\Models\BusinessSetting::where('key', 'delivery_boy_assign_message')->first()->value) @php($data = json_decode($dba, true))
{{ translate('deliveryman assign message') }}
@php($data = \App\CentralLogics\Helpers::get_business_settings('customer_notify_message'))
{{ translate('Customer notify message for deliveryman') }}
@php($data = \App\CentralLogics\Helpers::get_business_settings('customer_notify_message_for_time_change'))
{{ translate('Customer notify message for food preparation time change') }}
@php($dbs = \App\Models\BusinessSetting::where('key', 'delivery_boy_start_message')->first()->value) @php($data = json_decode($dbs, true))
{{ translate('deliveryman start message') }}
@php($dbc = \App\Models\BusinessSetting::where('key', 'delivery_boy_delivered_message')->first()->value) @php($data = json_decode($dbc, true))
{{ translate('deliveryman delivered message') }}
@php($data = \App\CentralLogics\Helpers::get_business_settings('returned_message'))
{{ translate('Order_returned_message') }}
@php($data = \App\CentralLogics\Helpers::get_business_settings('failed_message'))
{{ translate('Order_failed_message') }}
@php($data = \App\CentralLogics\Helpers::get_business_settings('canceled_message'))
{{ translate('Order_canceled_message') }}
@endsection @push('script_2') @endpush