Skip to content

Commit 2d0fcb1

Browse files
committed
create PostController in admin zone
1 parent 780f4c7 commit 2d0fcb1

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
namespace app\controller\admin;
4+
5+
use yii\web\Controller;
6+
7+
class PostController extends Controller {
8+
9+
public function actionIndex() {
10+
return $this->render('index');
11+
}
12+
}

0 commit comments

Comments
 (0)