Open n3yang opened 6 years ago
The template is great, but not more readable than official.
For example: yii2-adminlte-asset template: controller.php
public function actionCreate() { $model = new <?= $modelClass ?>(); if ($model->load(Yii::$app->request->post()) && $model->save()) { return $this->redirect(['view', <?= $urlParams ?>]); } else { return $this->render('create', [ 'model' => $model, ]); } }
Official template(version 2.0.15): controller.php
public function actionCreate() { $model = new <?= $modelClass ?>(); if ($model->load(Yii::$app->request->post()) && $model->save()) { return $this->redirect(['view', <?= $urlParams ?>]); } return $this->render('create', [ 'model' => $model, ]); }
Would you have any plan to update it ? Thanks.
Not really, but PRs are welcome.
The template is great, but not more readable than official.
For example: yii2-adminlte-asset template: controller.php
Official template(version 2.0.15): controller.php
Would you have any plan to update it ? Thanks.