Unable to get twitter user public tweets using Twitter streaming API 2

I want to get real time user tweets from twitter using twitter streaming api v2,
I use https://api.twitter.com/2/tweets/search/stream/rules
endpoint to set rules with rule
like “value”: “from:GulzadeNaser” first according to twitter developer api doc, then
by calling https://api.twitter.com/2/tweets/search/stream end point to get the real time tweets
Unfortunately I could not get the user tweets, but when I add the rule beside above mentioned rule like #demetakalin hashtag, then the mentioned user tweets and other tweets which have hashtag #demetakalin will be on on the result response.

I am using PHP/laravel to get the response, Is there any one who used Twitter streaming API v2 to get the user realtime tweets?
Thanks,