title = Yii::t('common', 'Addresses');
$this->params['breadcrumbs'][] = $this->title;
?>
beginBlock('content-header') ?>
= $this->title ?>
endBlock() ?>
render('_search', ['model' => $searchModel]); ?>
= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
// 'id',
'user_id:user',
'name',
'tel',
[
'label' => '地址',
'value' => function ($model) {
/* @var $model \common\models\Address */
return $model->getFullAddress();
}
],
[
'attribute' => 'is_default',
'value' => function ($model) {
/* @var $model \common\models\Address */
return $model->is_default ? '是' : '否';
}
],
// 'city',
// 'area',
// 'detail',
// 'created_at',
// 'updated_at',
// 'status',
],
]); ?>