12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\DetailView;
- /* @var $this yii\web\View */
- /* @var $model common\models\UserCar */
- $this->title = $model->id;
- $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'User Cars'), 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="box box-success">
- <div class="box-body">
- <?= DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'id',
- 'user_id',
- 'plate_no',
- 'owner',
- 'address',
- 'issue_date',
- 'vehicle_type',
- 'use_character',
- 'model',
- 'vin',
- 'engine_no',
- 'register_date',
- 'status',
- 'created_at',
- 'updated_at',
- 'car_series_id',
- ],
- ]) ?>
- </div>
- </div>
|