payumoney 支付网关集成
payumoney payment gateway integration
我想将 payumoney 与 laravel 5.1 整合。我将表格保存在 blade 中。提交表单后出现此错误:
method not found
然后我尝试将支付网关 (payu) 的整个表单放入控制器中。它仍然无法正常工作。实际上 laravel 无法向此 url 提交表单 - test.payu.in.
我也用过这个:
$request = \Illuminate\Http\Request::create('http://localhost/mypro/payu/', 'POST', ['param1' => 'value1', 'param2' => 'value2']);
不工作
请帮我解决这个问题。
您可能想要使用 PayU Money 的套餐。这里有一个 link 它非常容易使用。
在这里你什么都不用做。
只需注册 2 条路线,一条用于请求,一条用于响应。
然后你必须执行以下操作。
// Frirst:
return Payment::make($data, function($then) {
$then->redirectTo('your/response/url');
});
// Second:
$payment = Payment::capture();
// And you have the payment here.
就是这么简单。
希望对你有帮助。
我想将 payumoney 与 laravel 5.1 整合。我将表格保存在 blade 中。提交表单后出现此错误:
method not found
然后我尝试将支付网关 (payu) 的整个表单放入控制器中。它仍然无法正常工作。实际上 laravel 无法向此 url 提交表单 - test.payu.in.
我也用过这个:
$request = \Illuminate\Http\Request::create('http://localhost/mypro/payu/', 'POST', ['param1' => 'value1', 'param2' => 'value2']);
不工作
请帮我解决这个问题。
您可能想要使用 PayU Money 的套餐。这里有一个 link 它非常容易使用。
在这里你什么都不用做。 只需注册 2 条路线,一条用于请求,一条用于响应。 然后你必须执行以下操作。
// Frirst:
return Payment::make($data, function($then) {
$then->redirectTo('your/response/url');
});
// Second:
$payment = Payment::capture();
// And you have the payment here.
就是这么简单。 希望对你有帮助。