57 lines
1.4 KiB
PHP
57 lines
1.4 KiB
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\grid\GridView;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $searchModel backend\models\CustomerSearch */
|
|
/* @var $dataProvider yii\data\ActiveDataProvider */
|
|
|
|
$this->title = Yii::t('common/customer', 'Customers');
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="customer-index">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
<?php echo $this->render('_search', ['model' => $searchModel]); ?>
|
|
|
|
<p>
|
|
<?= Html::a(Yii::t('common/customer', 'Create Customer'), ['create'], ['class' => 'btn btn-success']) ?>
|
|
</p>
|
|
|
|
<?= GridView::widget([
|
|
'dataProvider' => $dataProvider,
|
|
'columns' => [
|
|
[
|
|
'attribute' => 'customerCardNumber' ,
|
|
// 'value' => 'customerCardNumber'
|
|
],
|
|
// 'id_user',
|
|
// 'id_partner_card',
|
|
// 'id_proposer',
|
|
'name',
|
|
'email:email',
|
|
// 'password',
|
|
'phone',
|
|
// 'sex',
|
|
// 'date_stundent_card_expire',
|
|
// 'birthdate',
|
|
// 'image',
|
|
// 'description',
|
|
// 'tax_number',
|
|
// 'country',
|
|
// 'zip',
|
|
// 'city',
|
|
// 'address',
|
|
'created_at:datetime',
|
|
// 'updated_at',
|
|
|
|
['class' => 'yii\grid\ActionColumn',
|
|
'template' =>'{view}{update}'
|
|
|
|
],
|
|
],
|
|
]); ?>
|
|
|
|
</div>
|