I'm doing on yii2 training blog!
I have a tab "My Blog":
It is displayed constantly even when no one logged in - this is not correct!
How to make the NavBar tab a` only appear if there is a logged in user on the page?
Source: https://ru.stackoverflow.com/questions/529346/
All Articles
if(Yii::$app->user->isGuest == false) { echo "My blog"; }if(Yii::$app->user->isGuest == false) { echo "My blog"; }something like this - MasterAlex