| 12345678910111213141516171819 |
- <?php
- namespace app\controllers;
- use yii\web\Controller;
- class ProfileController extends Controller
- {
- public function actionIndex(){
- $_u = \Yii::$app->user->identity;
- return $this->render('index', [
- 'profile' => $_u
- ]);
- }
- }
|