I am integrating ipay88 payment gateway with Laravel framework. I have successfully integrated the payment gateway and the user is able to reach the payment page, the error is in the redirect page after payment done/cancel, the error is "
The POST method is not supported for this route. Supported methods: GET, HEAD." Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException: The POST method is not supported for this route. Supported methods: GET, HEAD.
In my web.php I have this route:
Route::get('/get/renter/payment/status', 'OB@getpaymentstatus');
and I have added this rout to be excepted from CSRF token in VerifyCsrfToken
Could you please advise how to resolve this issue. Thank you