view.php 618 B

123456789101112131415161718192021222324252627
  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\DetailView;
  4. /* @var $this yii\web\View */
  5. /* @var $model common\models\Voice */
  6. $this->title = $model->title;
  7. $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Voices'), 'url' => ['index']];
  8. $this->params['breadcrumbs'][] = $this->title;
  9. ?>
  10. <div class="box box-success">
  11. <div class="box-body">
  12. <?= DetailView::widget([
  13. 'model' => $model,
  14. 'attributes' => [
  15. 'id',
  16. 'title',
  17. 'is_default',
  18. 'created_at',
  19. 'updated_at',
  20. 'status',
  21. ],
  22. ]) ?>
  23. </div>
  24. </div>