Your IP : 216.73.216.79


Current Path : /var/www/html/learn/backend/modules/learning/views/learning-enroll-chapter/
Upload File :
Current File : /var/www/html/learn/backend/modules/learning/views/learning-enroll-chapter/index.php

<?php

use yii\helpers\Html;
use yii\grid\GridView;

/* @var $this yii\web\View */
/* @var $searchModel backend\modules\learning\models\LearningEnrollChapterSearch */
/* @var $dataProvider yii\data\ActiveDataProvider */

$this->title = Yii::t('app', 'Learning Enroll Chapters');
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="learning-enroll-chapter-index">

    <h1><?= Html::encode($this->title) ?></h1>

    <p>
        <?= Html::a(Yii::t('app', 'Create Learning Enroll Chapter'), ['create'], ['class' => 'btn btn-success']) ?>
    </p>

    <?php // echo $this->render('_search', ['model' => $searchModel]); ?>

    <?= GridView::widget([
        'dataProvider' => $dataProvider,
        'filterModel' => $searchModel,
        'columns' => [
            ['class' => 'yii\grid\SerialColumn'],

            'id',
            'frontend_user_id',
            'learning_enroll_id',
            'learning_main_id',
            'learning_chapter_id',
            //'enroll_start',
            //'enroll_end',
            //'enroll_chapter_progress',

            ['class' => 'yii\grid\ActionColumn'],
        ],
    ]); ?>


</div>