| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * Author: lf
- * Blog: https://blog.feehi.com
- * Email: job@feehi.com
- * Created at: 2018-02-24 22:14
- */
- use yii\widgets\DetailView;
- /** @var $model common\models\Category */
- ?>
- <?=DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'id',
- 'parent_id',
- [
- 'label' => Yii::t('app', 'Parent Category Name'),
- 'attribute' => 'parent_id',
- 'value' => function($model){
- return $model->parent === null ? '' : $model->parent->name;
- }
- ],
- 'name',
- 'alias',
- 'sort',
- 'template',
- 'article_template',
- 'remark',
- 'created_at:datetime',
- 'updated_at:datetime',
- ],
- ])?>
|