55 lines
1.4 KiB
PHP
55 lines
1.4 KiB
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\grid\GridView;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $searchModel frontend\models\CustomerSearch */
|
|
/* @var $dataProvider yii\data\ActiveDataProvider */
|
|
|
|
$this->title = Yii::t('frontend/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('frontend/customer', 'Create Customer'), ['create'], ['class' => 'btn btn-success']) ?>
|
|
</p>
|
|
|
|
<?= GridView::widget([
|
|
'dataProvider' => $dataProvider,
|
|
'filterModel' => $searchModel,
|
|
'columns' => [
|
|
['class' => 'yii\grid\SerialColumn'],
|
|
|
|
'id_customer',
|
|
'id_customer_card',
|
|
'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',
|
|
// 'updated_at',
|
|
|
|
['class' => 'yii\grid\ActionColumn'],
|
|
],
|
|
]); ?>
|
|
|
|
</div>
|