You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
368 B
11 lines
368 B
1 year ago
|
<?php
|
||
|
|
||
|
return [
|
||
|
'env' => env('PAYTM_ENVIRONMENT', 'production'), // values : (local | production)
|
||
|
'merchant_id' => env('PAYTM_MERCHANT_ID', ''),
|
||
|
'merchant_key' => env('PAYTM_MERCHANT_KEY', ''),
|
||
|
'merchant_website' => env('PAYTM_MERCHANT_WEBSITE', ''),
|
||
|
'channel' => env('PAYTM_CHANNEL', ''),
|
||
|
'industry_type' => env('PAYTM_INDUSTRY_TYPE', ''),
|
||
|
];
|