Trying to get property of non-object yii2 ADMINLTE

0

my problem is this, I'm working with yii2 and with the basic mode in the main when I wanted a certain profile to see certain tabs I did it in the following way

if(Yii::$app->user->identity->perfil_id == "1")

and it worked perfectly for me.

Now add the AdminLTE and the menu works differently and when you put the code

if(Yii::$app->user->identity->perfil_id == "1") 

He tells me:

  

Trying to get property of non-object

When I use:

if(Yii::$app->user->isGuest)

I do not get an error, but the problem is that I have more than one profile.

    
asked by akrozs glenn 06.06.2018 в 22:59
source

0 answers