Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
karir.star4hire.com
/
plugins
/
PaymentRazorPay
✏️
Editing: ModuleProvider.php
<?php namespace Plugins\PaymentRazorPay; use Modules\ModuleServiceProvider; use Plugins\PaymentRazorPay\Gateway\RazorPayCheckoutGateway; class ModuleProvider extends ModuleServiceProvider { public function register() { $this->app->register(RouterServiceProvider::class); } public static function getPaymentGateway() { return [ 'razorpay_gateway' => RazorPayCheckoutGateway::class ]; } public static function getPluginInfo() { return [ 'title' => __('Gateway RazorPay'), 'desc' => __('Razorpay is the only payments solution in India that allows businesses to accept, process and disburse payments with its product suite. It gives you access to all payment modes including credit card, debit card, netbanking, UPI and popular wallets including JioMoney, Mobikwik, Airtel Money, FreeCharge, Ola Money and PayZapp.'), 'author' => "Booking Core", 'version' => "1.0.0", ]; } }
💾 Save Changes
❌ Cancel