ProfileController.php 190 B

12345678910111213141516
  1. <?php
  2. namespace app\controllers;
  3. use yii\web\Controller;
  4. class ProfileController extends Controller
  5. {
  6. public function actionIndex(){
  7. return $this->render('index');
  8. }
  9. }