title = $model->car_id; $this->params['breadcrumbs'][] = ['label' => 'Cars', 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?>
= Html::a('Update', ['update', 'id' => $model->car_id], ['class' => 'btn btn-primary']) ?> = Html::a('Delete', ['delete', 'id' => $model->car_id], [ 'class' => 'btn btn-danger', 'data' => [ 'confirm' => 'Are you sure you want to delete this item?', 'method' => 'post', ], ]) ?>
= DetailView::widget([ 'model' => $model, 'attributes' => [ 'car_id', 'model', 'year', 'image', 'color', 'mileage', 'build', 'option:ntext', 'price', ], ]) ?>