如何设置Laravel护照的个人访问令牌的默认范围?

According to Laravel Passport documentations, i can set default scope to tokens using,

Passport::setDefaultScope([
    'my-scope'
]);

But this does not seems to be working with Personal Access Tokens. I checked the documentation to see if this method does not work with Personal Access Tokens. Did not find anything.

So the questions is, How can i set default scope for personal access tokens ?

Note: I am doing this with vue.js. In case it is relevant.