title = $model->option_id;
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Options'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
    = Html::encode($this->title) ?>
    
        = Html::a(Yii::t('app', 'Update'), ['update', 'id' => $model->option_id], ['class' => 'btn btn-primary']) ?>
        = Html::a(Yii::t('app', 'Delete'), ['delete', 'id' => $model->option_id], [
            'class' => 'btn btn-danger',
            'data' => [
                'confirm' => Yii::t('app', 'Are you sure you want to delete this item?'),
                'method' => 'post',
            ],
        ]) ?>
    
    = DetailView::widget([
        'model' => $model,
        'attributes' => [
            'option_id',
            'option_key',
            'option_parent',
            'option_translatable',
            'option_format',
        ],
    ]) ?>