Created
April 14, 2019 01:07
-
-
Save defrindr/8bd22477989516c6e4597407e0a58481 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| use yii\helpers\Html; | |
| use kartik\export\ExportMenu; | |
| use kartik\grid\GridView; | |
| use yii\helpers\Url; | |
| ... | |
| <div class="module-materi-index"> | |
| <div class="box box-success"> | |
| <div class="box-header"> | |
| ... | |
| </div> | |
| <div class="box-body"> | |
| <?php | |
| $gridColumn = [ | |
| ... | |
| [ | |
| ... | |
| 'filter' => \yii\helpers\ArrayHelper::map(\common\models\ModuleKelas::find()->with('jurusan')->asArray()->all(),'id', | |
| function($model){ | |
| // return var_dump($model); | |
| return $model['grade']." ".$model['jurusan']['nama']." ".$model['kelas']; | |
| } | |
| ), | |
| ... | |
| ], | |
| ... | |
| ]; | |
| ?> | |
| ... | |
| </div> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment