Closed surajitbasak109 closed 2 years ago
Hi, I am getting 419 Page expired when I made a payment from PayUMoney. It is making a post request to /tzsk/payment/success?_token which is:
/tzsk/payment/success?_token
I don't know why it is throwing 419|Page expired error. Can you please tell me why?
Currently I am using Laravel v6 and this package "tzsk/payu": "4.0.1".
"tzsk/payu": "4.0.1"
Okay, I have figured it out. After adding the route name in except array from VerifyCsrfToken middleware, it has been fixed.
except
VerifyCsrfToken
protected $except = [ 'tzsk/payment/{status}' ];
Hi, I am getting 419 Page expired when I made a payment from PayUMoney. It is making a post request to
/tzsk/payment/success?_token
which is:I don't know why it is throwing 419|Page expired error. Can you please tell me why?
Currently I am using Laravel v6 and this package
"tzsk/payu": "4.0.1"
.