The response from the instamojo api is successfully extracted but the issue is that, the webhook service is not working. In this I've provided a webhook url in request and i want to exclude the CSRF verification, for that I've included Except array with 'instamojo/*'
in middleware but still no use.
class VerifyCsrfToken extends Middleware
{
/**
* The URIs that should be excluded from CSRF verification.
*
* @var array
*/
protected $except = [
'instamojo/*',
];
}
The current Route
Route::post('webhook','HomeController@webhook');
It can be solved by adding the posting route name in middleware's Except section. Here I added
webhook/*
in my middleware.Route
Middleware
It work's fine.Thank you.