VoteController.php 216 B

12345678910111213
  1. <?php
  2. namespace backend\controllers;
  3. use Yii;
  4. use yii\web\Controller;
  5. class VoteController extends BackendController
  6. {
  7. public function actionList()
  8. {
  9. return $this->render('list',['vote'=>[],'paging'=>'']);
  10. }
  11. }