view.php 734 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\DetailView;
  4. /* @var $this yii\web\View */
  5. /* @var $model common\models\CarGroup */
  6. $this->title = $model->title;
  7. $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Car Groups'), '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. 'brand_id',
  17. 'user_id',
  18. 'title',
  19. 'amount',
  20. 'wechat',
  21. 'created_at',
  22. 'updated_at',
  23. 'status',
  24. 'province',
  25. 'city',
  26. ],
  27. ]) ?>
  28. </div>
  29. </div>