|
|
|
|
82
|
'amount', 'orderid', 'bill_name', 'bill_email', 'bill_mobile',
|
82
|
'amount', 'orderid', 'bill_name', 'bill_email', 'bill_mobile',
|
83
|
'bill_desc', 'country', 'verify_code', 'currency'
|
83
|
'bill_desc', 'country', 'verify_code', 'currency'
|
84
|
),
|
84
|
),
|
85
|
- Arr::only($this->config->get('payment.gateway.razerpay.options', []), ['channel']),
|
|
|
86
|
- Arr::only($options, ['channel'])
|
|
|
|
|
85
|
+ Arr::only($this->config->get('payment.gateway.razerpay.options', []), ['channel', 'returnurl', 'callbackurl']),
|
|
|
86
|
+ Arr::only($options, ['channel', 'returnurl', 'callbackurl'])
|
87
|
);
|
87
|
);
|
88
|
return "$this->endpoint/MOLPay/pay/$this->merchant_id/?" .
|
88
|
return "$this->endpoint/MOLPay/pay/$this->merchant_id/?" .
|
89
|
http_build_query($query);
|
89
|
http_build_query($query);
|