1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- use common\models\Compere;
- use yii\helpers\Html;
- use yii\grid\GridView;
- /* @var $this yii\web\View */
- /* @var $searchModel backend\models\search\CompereSearch */
- /* @var $dataProvider yii\data\ActiveDataProvider */
- $this->title = Yii::t('common', 'Comperes');
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <?php $this->beginBlock('content-header') ?>
- <?= $this->title . ' ' . Html::a(Yii::t('common', 'Create Compere'), ['create'], ['class' => 'btn btn-success']) ?>
- <?php $this->endBlock() ?>
- <?php // echo $this->render('_search', ['model' => $searchModel]); ?>
- <div class="box box-success">
- <div class="box-body">
- <?= GridView::widget([
- 'dataProvider' => $dataProvider,
- 'filterModel' => $searchModel,
- 'columns' => [
- 'id',
- 'name',
- 'desc',
- [
- 'attribute' => 'province',
- 'format' => 'raw',
- 'value' => function ($model) {
- return \common\models\Region::getNameById($model->province);
- },
- ],
- [
- 'attribute' => 'city',
- 'format' => 'raw',
- 'value' => function ($model) {
- return \common\models\Region::getNameById($model->city);
- },
- ],
- [
- 'attribute' => 'area',
- 'format' => 'raw',
- 'value' => function ($model) {
- return \common\models\Region::getNameById($model->area);
- },
- ],
- // 'address',
- 'title',
- 'works',
- 'tel',
- 'created_at',
- 'updated_at',
- [
- 'attribute' => 'status',
- 'value' => function ($model) {
- return Compere::getStatusList($model->status);
- },
- ],
- ['class' => 'yii\grid\ActionColumn'],
- ],
- ]); ?>
- </div>
- </div>
|