title = Yii::t('app', 'Seo Categories'); $this->params['breadcrumbs'][] = $this->title; ?>

title) ?>

render('_search', ['model' => $searchModel]); ?>

'btn btn-success']) ?>

$dataProvider, 'filterModel' => $searchModel, 'columns' => [ ['class' => 'yii\grid\SerialColumn'], 'seo_category_id', 'name', 'controller', 'status', [ 'class' => 'yii\grid\ActionColumn', 'template' => '{update} {image} {delete}', 'buttons' => [ 'update' => function ($url, $model) { return Html::a ( '', Url::toRoute(['seo-category/update', 'id' => $model->seo_category_id]), [ 'title' => "Редактировать", ] ); }, 'image' => function ($url, $model) { return Html::a ( '', Url::toRoute(['seo-dynamic/index', 'seo_category_id' => $model->seo_category_id]), [ 'title' => "Список", ] ); }, 'delete' => function ($url, $model) { return Html::a ( '', Url::toRoute(['seo-category/delete', 'id' => $model->seo_category_id]), [ 'title' => "Удалить", ] ); }, ], 'contentOptions' => ['style' => 'width: 70px;'], ], ], ]); ?>