We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7ba0bc6 + 25b66bf commit 8eee3f4Copy full SHA for 8eee3f4
src/Payum/LaravelPackage/PayumServiceProvider.php
@@ -124,12 +124,12 @@ protected function defineRoutes()
124
'uses' => 'Payum\LaravelPackage\Controller\RefundController@doAction'
125
));
126
127
- $route->get('/payment/notify/{payum_token}', array(
+ $route->any('/payment/notify/{payum_token}', array(
128
'as' => 'payum_notify_do',
129
'uses' => 'Payum\LaravelPackage\Controller\NotifyController@doAction'
130
131
132
- $route->get('/payment/notify/unsafe/{gateway_name}', array(
+ $route->any('/payment/notify/unsafe/{gateway_name}', array(
133
'as' => 'payum_notify_do_unsafe',
134
'uses' => 'Payum\LaravelPackage\Controller\NotifyController@doUnsafeAction'
135
0 commit comments