|null $scopes * @property bool $revoked * @property Carbon|null $created_at * @property Carbon|null $updated_at * @property Carbon|null $expires_at * @property-read Client|null $client * @property-read RefreshToken|null $refreshToken * * @method static \Illuminate\Database\Eloquent\Builder|OAuthToken existsIn(array $haystack) * @method static \Illuminate\Database\Eloquent\Builder|OAuthToken newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|OAuthToken newQuery() * @method static \Illuminate\Database\Eloquent\Builder|OAuthToken query() * @method static \Illuminate\Database\Eloquent\Builder|OAuthToken whereClientId($value) * @method static \Illuminate\Database\Eloquent\Builder|OAuthToken whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|OAuthToken whereExpiresAt($value) * @method static \Illuminate\Database\Eloquent\Builder|OAuthToken whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|OAuthToken whereName($value) * @method static \Illuminate\Database\Eloquent\Builder|OAuthToken whereRevoked($value) * @method static \Illuminate\Database\Eloquent\Builder|OAuthToken whereScopes($value) * @method static \Illuminate\Database\Eloquent\Builder|OAuthToken whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|OAuthToken whereUserId($value) * * @mixin \Eloquent */ class OAuthToken extends PassportToken { protected $visible = [ 'id', 'user_id', 'client_id', 'name', 'scopes', 'revoked', 'created_at', 'updated_at', 'expires_at', ]; }