����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.147.48.161 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/gle.gltechlimited.com/config/ |
Upload File : |
<?php return [ /* |-------------------------------------------------------------------------- | Payment Environment |-------------------------------------------------------------------------- | | This value determines the environment of the payment gateway. | Possible options: | "test" For testing and development. | "secure" For live payment. | */ 'env' => env('PAYU_METHOD'), /* |-------------------------------------------------------------------------- | Default Account to use |-------------------------------------------------------------------------- | | The account to be used for Payment | */ 'default' => env('PAYU_DEFAULT'), /* |-------------------------------------------------------------------------- | All Accounts array |-------------------------------------------------------------------------- | | All the different accounts with its names | */ 'accounts' => [ /* |-------------------------------------------------------------------------- | Account Credentials |-------------------------------------------------------------------------- | | The account name and credentials which are found in the PayuBiz or | PayuMoney Console. | | key => (string) Merchant Key. | salt => (string) Merchant Salt. | money => (boolean) Is it a payumoney account? | auth => (string) Authorization Token if it is a payumoney account. | */ 'payubiz' => [ 'key' => env('PAYU_MERCHANT_KEY'), 'salt' => env('PAYU_MERCHANT_SALT'), 'money' => false, 'auth' => null ], 'payumoney' => [ 'key' => env('PAYU_MERCHANT_KEY'), 'salt' => env('PAYU_MERCHANT_SALT'), 'money' => true, 'auth' => null ], ], /* |-------------------------------------------------------------------------- | Payment Store Driver |-------------------------------------------------------------------------- | | This is the config for storing the payment info. I recommend to use | database driver for storing then use it for your own use. | Options : "database", "session". | Note: If you use session driver make sure you are using secure = true | in config/session.php | */ 'driver' => 'session', /* |-------------------------------------------------------------------------- | Payu Payment Table |-------------------------------------------------------------------------- | | This is table that will be used for storing the payment information. | Run: php artisan vendor:publish to get the table in the migrations | directory. If you did change the table name then specify here. | */ 'table' => 'payu_payments', ];