@extends('layouts.master') @section('title', __('App Settings')) @section('breadcum') @endsection @section('maincontent')
{{__('App Settings')}}
@csrf
{{__('GENERATE SECRET KEY FOR API')}}
{!! Form::label('generate_apikey',__('Client Secret KEY')) !!} {{ $errors->first('generate_apikey') }}
@if ($appconfig) {!! Form::model($appconfig, ['method' => 'PATCH', 'action' => ['AppConfigController@update', $appconfig->id], 'files' => true]) !!}
{{__('APP SETTINGS')}}
{!! Form::label('title',__('App Title')) !!} {!! Form::text('title', null, ['class' => 'form-control']) !!} {{ $errors->first('title') }}
(Note - Size : 300x90)
{{__('PAYMENT GATEWAY SETTINGS')}}
{!! Form::label('stripe_payment',__('STRIPE PAYMENT')) !!}
@if(env('STRIPE_KEY') != NULL && env('STRIPE_SECRET') != NULL)
@else {{__('please fill the details properly check out here')}} {{__('click here')}} @endif
{!! Form::label('razorpay_payment', __('RAZORPAY PAYMENT')) !!}
@if(env('RAZOR_PAY_KEY') != NULL && env('RAZOR_PAY_SECRET') != NULL)
@else {{__('please fill the details properly check out here')}} {{__('click here')}} @endif
{!! Form::label('paypal_payment',__('PAYPAL PAYMENT')) !!}
@if(env('PAYPAL_CLIENT_ID') != NULL && env('PAYPAL_SECRET_ID') != NULL && env('PAYPAL_MODE') != NULL )
@else {{__('please fill the details properly check out here')}} {{__('click here')}} @endif
{!! Form::label('inapp_payment',__('IN APP PAYMENT')) !!}
{!! Form::label('instamojo_payment',__('INSTA MOJO PAYMENT')) !!}
@if(env('IM_API_KEY') != NULL && env('IM_AUTH_TOKEN') != NULL && env('IM_URL') != NULL)
@else {{__('please fill the details properly check out here')}} {{__('click here')}} @endif
{!! Form::label('bankdetails',__('BANK DETAILS')) !!}
{!! Form::label('brainetree_payment',__('BRAIN TREE PAYMENT')) !!}
@if(env('BTREE_ENVIRONMENT') != NULL && env('BTREE_MERCHANT_ID') != NULL && env('BTREE_PUBLIC_KEY') != NULL && env('BTREE_PRIVATE_KEY') != NULL && env('BTREE_MERCHANT_ACCOUNT_ID') != NULL)
@else {{__('please fill the details properly check out here')}} {{__('click here')}} @endif
{!! Form::label('paytm_payment',__('PAYTM PAYMENT')) !!}
@if(env('PAYTM_MID') != NULL && env('PAYTM_MERCHANT_KEY') != NULL && env('PAYTM_ENVIRONMENT') != NULL && env('PAYTM_MERCHANT_WEBSITE') != NULL && env('PAYTM_CHANNEL') != NULL)
@else {{__('please fill the details properly check out here')}} {{__('click here')}} @endif
{!! Form::label('paystack_payment',__('PAYSTACK PAYMENT')) !!}
@if(env('PAYSTACK_PUBLIC_KEY') != NULL && env('PAYSTACK_SECRET_KEY') != NULL && env('PAYSTACK_PAYMENT_URL') != NULL)
@else {{__('please fill the details properly check out here')}} {{__('click here')}} @endif
{{__('SOCIAL LOGIN SETTINGS')}}
{!! Form::label('fb_check',__('Enable Facebook Login')) !!}
@if(env('FACEBOOK_CLIENT_ID') != NULL && env('FACEBOOK_CLIENT_SECRET') != NULL && env('FACEBOOK_CALLBACK') != NULL)
@else {{__('please fill the details properly check out here')}} {{__('click here')}} @endif
{!! Form::label('google_login',__('Enable Google Login')) !!}
@if(env('GOOGLE_CLIENT_ID') != NULL && env('GOOGLE_CLIENT_SECRET') != NULL && env('GOOGLE_CALLBACK') != NULL)
@else {{__('please fill the details properly check out here')}} {{__('click here')}} @endif
{!! Form::label('amazon_login',__('Enable AMAZON Login')) !!}
@if(env('AMAZON_LOGIN_ID') != NULL && env('AMAZON_LOGIN_SECRET') != NULL && env('AMAZON_LOGIN_REDIRECT') != NULL)
@else {{__('please fill the details properly check out here')}} {{__('click here')}} @endif
{{__('ADMOB SETTINGS ')}}
{!! Form::label('banner_admob', __('BANNER ADMOB')) !!}
{!! Form::label('interstitial_admob', __('INTERSTITAL ADMOB')) !!}
{!! Form::label('interstitial_id', __('INTERSTITAL ID')) !!} {!! Form::text('interstitial_id', null, ['class' => 'form-control']) !!} {{ $errors->first('interstitial_id') }}
{{__('PUSH NOTIFICATION SETTINGS ')}}
{!! Form::label('push_key', __('Push Notification')) !!}
{!! Form::label('PUSH_AUTH_KEY', __('PUSH AUTH KEY')) !!}
{{__('OTHER SETTINGS')}}
{!! Form::label('remove_ads',__('Remove Ads')) !!}
{!! Form::label('google_login',__('Admob Setting')) !!}
{!! Form::close() !!}
@endif
@endsection @section('script') @endsection