$grant_types * @property array $redirect_uris * @property Carbon|null $created_at * @property Carbon|null $updated_at * @property bool $revoked */ class Client extends PassportClient { /** @use HasFactory */ use HasFactory; /** * Create a new factory instance for the model. * * @return ClientFactory */ protected static function newFactory(): Factory { return ClientFactory::new(); } }