How to hide detail view labels on yii2
问题 I want to hide labels for the detail view <?= DetailView::widget([ 'model' => $model, //To hide labels 'label' => ['hidden' => true], 'attributes' => [ 'visits' ], ]) ?> On the above snipet of code, there is 'label' => ['hidden' => true], is there but it is not a method which is existing. I want to know is there a method to hide labels Something which is equivalent to that. 回答1: If you want to hide label column in GridView you must modify its enter link description heretemplate. For example: