/home/techb158/ileadtechnology.com/config
Edit: /home/techb158/ileadtechnology.com/config/payu.php (3051B)
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' => env('PAYU_MONEY_TRUE'),
'auth' => env('PAYU_AUTH_HEADER')
],
'payumoney' => [
'key' => env('PAYU_MERCHANT_KEY'),
'salt' => env('PAYU_MERCHANT_SALT'),
'money' => env('PAYU_MONEY_TRUE'),
'auth' => env('PAYU_AUTH_HEADER')
],
],
/*
|--------------------------------------------------------------------------
| 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',
];