view.php 541 B

123456789101112131415161718192021222324
  1. <?php
  2. use yii\widgets\DetailView;
  3. /* @var $this yii\web\View */
  4. /* @var $model common\modules\config\models\Config */
  5. $this->title = $model->name;
  6. $this->params['breadcrumbs'][] = ['label' => 'Configs', 'url' => ['index']];
  7. $this->params['breadcrumbs'][] = $this->title;
  8. ?>
  9. <div class="box box-success">
  10. <div class="box-body">
  11. <?= DetailView::widget([
  12. 'model' => $model,
  13. 'attributes' => [
  14. 'id',
  15. 'name',
  16. 'value',
  17. 'description',
  18. ],
  19. ]) ?>
  20. </div>
  21. </div>