/home/brandsfa/www/resources/views/admin-views/business-settings/payment-method/index.blade.php
@php use Illuminate\Support\Facades\Session; @endphp
@extends('layouts.back-end.app')
@section('title', translate('payment_Method'))
@section('content')
@php($direction = Session::get('direction') === "rtl" ? 'right' : 'left')
<div class="content container-fluid">
<div class="mb-4 pb-2">
<h2 class="h1 mb-0 text-capitalize d-flex align-items-center gap-2">
<img src="{{dynamicAsset(path: 'public/assets/back-end/img/3rd-party.png')}}" alt="">
{{translate('3rd_party')}}
</h2>
</div>
@include('admin-views.business-settings.third-party-payment-method-menu')
@if($paymentGatewayPublishedStatus)
<div class="col-12 mb-3">
<div class="card">
<div class="card-body d-flex justify-content-around align-items-center">
<h4 class="text-danger bg-transparent m-0">
<i class="tio-info-outined"></i>
{{ translate('your_current_payment_settings_are_disabled,because_you_have_enabled_payment_gateway_addon').' '.translate('To_visit_your_currently_active_payment_gateway_settings_please_follow_the_link').'.' }}
</h4>
<span>
<a href="{{!empty($paymentUrl) ? $paymentUrl : ''}}" class="btn btn-outline-primary"><i class="tio-settings mr-1"></i>{{translate('settings')}}</a>
</span>
</div>
</div>
</div>
@endif
<div class="row gy-3" id="payment-gateway-cards">
@foreach($paymentGatewaysList as $key=> $gateway)
<div class="col-md-6">
<div class="card">
<form action="{{route('admin.business-settings.payment-method.addon-payment-set')}}" method="POST"
id="{{$gateway->key_name}}-form" enctype="multipart/form-data">
@csrf @method('PUT')
<div class="card-header d-flex flex-wrap align-content-around">
<h5>
<span class="text-uppercase">{{str_replace('_',' ',$gateway->key_name)}}</span>
</h5>
@php($additional_data = $gateway['additional_data'] != null ? json_decode($gateway['additional_data']) : [])
<?php
if ($additional_data != null){
$img_path = $additional_data->gateway_image ? dynamicStorage(path: 'storage/app/public/payment_modules/gateway_image/'.$additional_data->gateway_image) : '';
}else{
$img_path = dynamicAsset(path: 'public/assets/back-end/img/modal/payment-methods/'.$gateway->key_name.'.png');
}
?>
<label class="switcher show-status-text">
<input class="switcher_input toggle-switch-dynamic-image" type="checkbox" name="status" value="1"
id="{{$gateway->key_name}}" {{$gateway['is_active'] == 1?'checked':''}}
data-modal-id = "toggle-modal"
data-toggle-id = "{{$gateway->key_name}}"
data-on-image = "{{ $img_path }}"
data-off-image = "{{ $img_path }}"
data-on-title = "{{translate('want_to_Turn_ON_')}}{{str_replace('_',' ',strtoupper($gateway->key_name))}}{{translate('_as_the_Digital_Payment_method').'?'}}"
data-off-title = "{{translate('want_to_Turn_OFF_')}}{{str_replace('_',' ',strtoupper($gateway->key_name))}}{{translate('_as_the_Digital_Payment_method').'?'}}"
data-on-message = "<p>{{translate('if_enabled_customers_can_use_this_payment_method')}}</p>"
data-off-message = "<p>{{translate('if_disabled_this_payment_method_will_be_hidden_from_the_checkout_page')}}</p>">
<span class="switcher_control" data-ontitle="{{ translate('on') }}" data-offtitle="{{ translate('off') }}"></span>
</label>
</div>
<div class="card-body">
<div class="payment--gateway-img">
<img class="height-80px" id="gateway-image-{{$gateway->key_name}}"
src="{{ getValidImage(path:'storage/app/public/payment_modules/gateway_image/'.($additional_data->gateway_image ?? ''), type: 'backend-payment' ) }}"
alt="{{translate('public')}}">
</div>
<input name="gateway" value="{{$gateway->key_name}}" class="d-none">
@php($mode = $gateway->live_values['mode'])
<div class="form-group mb-10px" >
<select class="js-example-responsive form-control" name="mode">
<option value="live" {{$mode=='live'?'selected':''}}>{{translate('live')}}</option>
<option value="test" {{$mode=='test'?'selected':''}}>{{translate('test')}}</option>
</select>
</div>
@if($gateway->key_name === 'paystack')
@php($skip=['gateway','mode','status','callback_url'])
@else
@php($skip=['gateway','mode','status'])
@endif
@foreach($gateway->live_values as $gatewayKey => $value)
@if(!in_array($gatewayKey , $skip))
<div class="form-group mb-10px">
<label for="exampleFormControlInput1"
class="form-label">{{ucwords(str_replace('_',' ',$gatewayKey))}}
<span class="text-danger">*</span></label>
<input type="text" class="form-control"
name="{{$gatewayKey}}"
placeholder="{{ucwords(str_replace('_',' ',$gatewayKey))}} *"
value="{{env('APP_ENV')=='demo'?'':$value}}">
</div>
@endif
@endforeach
<div class="form-group mb-10px" >
<label for="exampleFormControlInput1"
class="form-label">{{translate('payment_gateway_title')}} <span class="text-danger">*</span></label>
<input type="text" class="form-control"
name="gateway_title"
placeholder="{{translate('payment_gateway_title')}}"
value="{{$additional_data != null ? $additional_data->gateway_title : ''}}" required>
</div>
<div class="form-group mb-10px" >
<label for="exampleFormControlInput1"
class="form-label text-capitalize">{{translate('choose_logo')}} </label>
<input type="file" class="form-control image-input" name="gateway_image" accept=".jpg, .png, .jpeg|image/*" data-image-id="gateway-image-{{$gateway->key_name}}" >
</div>
<div class="text-right mb-20px">
<button type="submit" class="btn btn-primary px-5">{{translate('save')}}</button>
</div>
</div>
</form>
</div>
</div>
@endforeach
</div>
</div>
@endsection
@push('script')
<script>
'use strict';
@if($paymentGatewayPublishedStatus)
let paymentGatewayCards = $('#payment-gateway-cards');
paymentGatewayCards.find('input').each(function () {
$(this).attr('disabled', true);
});
paymentGatewayCards.find('select').each(function () {
$(this).attr('disabled', true);
});
paymentGatewayCards.find('.switcher_input').each(function () {
$(this).removeAttr('checked', true);
});
paymentGatewayCards.find('button').each(function () {
$(this).attr('disabled', true);
});
@endif
</script>
@endpush