I need to skip csrf verification for one of my endpoint. So I add that route to $except
array in Anomaly\Streams\Platform\Http\Middleware\VerifyCsrfToken
like this,
protected $except = [ "/payments/notify" ];
But still it not skip the csrf verification. So, please help me with this.
try this