Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- use yii\helpers\Html;
- use yii\grid\GridView;
- /* @var $this yii\web\View */
- /* @var $searchModel frontend\models\ContactSearch */
- /* @var $dataProvider yii\data\ActiveDataProvider */
- $this->title = 'Contacts';
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="contact-index">
- <h1><?= Html::encode($this->title) ?></h1>
- <p>
- <?= Html::a('Create Contact', ['create'], ['class' => 'btn btn-success']) ?>
- </p>
- <?= GridView::widget([
- 'dataProvider' => $dataProvider,
- 'filterModel' => $searchModel,
- 'columns' => [
- ['class' => 'yii\grid\SerialColumn'],
- 'name',
- 'email:email',
- ['class' => 'yii\grid\ActionColumn'],
- ],
- ]); ?>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement