Masyar_Syauqi

_create

Dec 23rd, 2015
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <?php
  2.  
  3. use yii\helpers\Html;
  4.  
  5.  
  6. /* @var $this yii\web\View */
  7. /* @var $model app\models\Karyawan */
  8.  
  9. $this->title = 'Create Karyawan';
  10. $this->params['breadcrumbs'][] = ['label' => 'Karyawans', 'url' => ['index']];
  11. $this->params['breadcrumbs'][] = $this->title;
  12. ?>
  13. <div class="karyawan-create">
  14.  
  15.     <h1><?= Html::encode($this->title) ?></h1>
  16.  
  17.     <?= $this->render('_form', [
  18.         'model' => $model,
  19.         'modelsKeluarga' => $modelsKeluarga,
  20.         'modelsPendidikan' => $modelsPendidikan,
  21.     ]) ?>
  22.  
  23. </div>
Add Comment
Please, Sign In to add comment