=
		Html::a(
			Yii::t('buttons','Create Setting'),
			['create'],
			['class' => 'btn btn-success']
		) ?>
	
	
		
			
			=
			GridView::widget(
				[
					'dataProvider' => $dataProvider,
					'filterModel' => $searchModel,
					'columns' => [
						//'id',
						//'type',
						[
							'attribute' => 'section',
							'filter' => ArrayHelper::map(
								Settings::find()->select('section')->distinct()->where(['<>', 'section', ''])->all(),
								'section',
								'section'
							),
						],
						'key',
						'value:ntext',
						[
							'class' => ToggleColumn::class,
							'attribute' => 'active',
							'filter' => [1 => Yii::t('yii', 'Yes'), 0 => Yii::t('yii', 'No')],
							'options' => ['style' => 'width: 100px;'],
							'contentOptions' => ['class' => 'text-center'],
						],
						[
							'class' => 'yii\grid\ActionColumn',
							'options' => ['style' => 'width: 100px;'],
							'contentOptions' => ['class' => 'text-center'],
						],
					],
				]
			); ?>