= $this->render('/widgets/_ibox-title') ?>
= Bar::widget()?>
= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'layout' => '{items}',
'columns' => [
[
'class' => CheckboxColumn::className(),
],
[
'attribute' => 'name',
'label' => Yii::t("app", 'Name'),
],
[
'attribute' => 'tips',
'label' => Yii::t("app", "Description")
],
[
'class' => ActionColumn::className(),
'width' => '190px',
'buttons' => [
'entry' => function ($url, $model, $key) {
return Html::a(' ', Url::to([
'banners',
'id' => $model['id']
]), [
'title' => Yii::t('app', 'Entry'),
'data-pjax' => '0',
'class' => 'btn-sm J_menuItem',
]);
}
],
'template' => '{entry} {update} {delete}',
]
]
]) ?>