/home/techb158/ileadtechnology.com/vendor/tzsk/payu/src/Config
NameSizeModeActions
payu.php31580644editdlrm
tzsk-payu.php15710644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/tzsk/payu/src/Config/payu.php (3158B)
'test', /* |-------------------------------------------------------------------------- | Default Account to use |-------------------------------------------------------------------------- | | The account to be used for Payment | */ 'default' => 'payubiz', /* |-------------------------------------------------------------------------- | 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' => 'gtKFFx', 'salt' => 'eCwWELxi', 'money' => false, 'auth' => null ], 'payumoney' => [ 'key' => 'JBZaLc', 'salt' => 'GQs7yium', 'money' => true, 'auth' => null ], ], /* |-------------------------------------------------------------------------- | Payu Endpoint. |-------------------------------------------------------------------------- | | Payment endpoint for Payu. | */ 'endpoint' => 'payu.in/_payment', /* |-------------------------------------------------------------------------- | 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', ];