How to login from different tables in Yii2

Comparing #3 with #4

Revision #4 was created by AndroideLP AndroideLP on Apr 3, 2018, 11:35:03 PM.

error code php

Content

The Problem: Yii2 utilizes by default UserIdentity configured in config/web.php for connection, this object appy one table to authentication ('identityClass' => 'app\painel\models\User'). How to authentication from diferent tables? Solution: Create instances in web.php to uses UserIdentify. eg:
 
```php
 
$user = \Yii::$app->user; $school = \Yii::$app->school; $teacher = \Yii::$app->teacher;
 
```
 
 
My config/web.php

```php

'user' => [
'class'=>'yii\web\User',
[...]