view.php 569 B

12345678910111213141516171819202122232425
  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\DetailView;
  4. /* @var $this yii\web\View */
  5. /* @var $model common\models\CarBrand */
  6. $this->title = $model->name;
  7. $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Car Brands'), '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. 'name',
  17. 'img',
  18. 'firstletter',
  19. ],
  20. ]) ?>
  21. </div>
  22. </div>