ProfileController.php 274 B

12345678910111213141516171819
  1. <?php
  2. namespace app\controllers;
  3. use yii\web\Controller;
  4. class ProfileController extends Controller
  5. {
  6. public function actionIndex(){
  7. $_u = \Yii::$app->user->identity;
  8. return $this->render('index', [
  9. 'profile' => $_u
  10. ]);
  11. }
  12. }