It seems in Laravel 11 it applies the 'web' routing rules such CSFR protection, which leads to this error:
"Session store not set on request"
How it's better to solve this error?
I've tried to create a new middleware
class VerifyCsrfToken extends Middleware { protected $except = [ '/telegraph/{token}/webhook', ]; }
and then add it to the telegraph config, but it does not help.