⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
work
/
plugins
/
PaymentTwoCheckout
/
Edit File: ModuleProvider.php
<?php namespace Plugins\PaymentTwoCheckout; use Modules\ModuleServiceProvider; use Plugins\PaymentTwoCheckout\Gateway\TwoCheckoutGateway; class ModuleProvider extends ModuleServiceProvider { public function register() { $this->app->register(RouterServiceProvider::class); } public static function getPaymentGateway() { return [ 'two_checkout_gateway' => TwoCheckoutGateway::class ]; } public static function getPluginInfo() { return [ 'title' => __('Gateway 2Checkout'), 'desc' => __('Gateway 2Checkout is one of the best payment Gateway to accept online payments from buyers around the world which allow your customers to make purchases in many payment methods, 15 languages, 87 currencies, and more than 200 markets in the world.'), 'author' => "Booking Core", 'version' => "1.0.0", ]; } }
Simpan