guild/frontend/views/site/info.php

19 lines
284 B
PHP
Raw Normal View History

<?php
use common\classes\Debug;
use yii\widgets\DetailView;
use yii\grid\GridView;
echo GridView::widget([
'dataProvider' => $model,
]);
// Debug::dd($model);
// echo DetailView::widget([
// 'model' => $model,
// 'attributes' => [
// 'email',
// ],
// ]);