Currently I am building rest API using Laravel. For authentication, I am using the Sanctum package. Every time a user is logged in it generate a token that looks like this:
"token": "98|b45h97e17VVpugjO71wwURoicIqDQP2ejTkCWwoD"
But why Sanctum includes the database id with the token?
How to remove the database id from the token?