anandsiddharth / laravel-paytm-wallet

Integrate paytm wallet in your laravel application easily with this package. This package uses official Paytm PHP SDK's.
MIT License
92 stars 40 forks source link

404 error when redirecting from PayTM to the website. #54

Closed golchha21 closed 4 years ago

golchha21 commented 4 years ago

I have made the settings as per the documentation but it returns 404 error while redirecting back from PayTM.

p.s.:

  1. The route exists and it works as it should. Route::post('pay/callback', 'OrderController@callback')->name('order.pay.callback');
  2. Added the exclusion form CRSF protected $except = [ 'pay/callback' ];
golchha21 commented 4 years ago

Now solved.

I changed the order of the route and it is now working.