@sos99 You don’t. JWTs are meant to have short lifetimes for this very reason. Because JWTs carry all the information in themselves, they can’t be “revoked” once issued like say, an OAuth token can be.
//Invalidate the token (add it to the blacklist)
// Pass true as the first param to force the token to be blacklisted "forever".
auth()->invalidate(true);