📜  sanctum laravel - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:41.525000             🧑  作者: Mango

代码示例6
// Revoke all tokens...
$user->tokens()->delete();

// Revoke the token that was used to authenticate the current request...
$request->user()->currentAccessToken()->delete();

// Revoke a specific token...
$user->tokens()->where('id', $tokenId)->delete();