create.php 412 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2016-03-23 15:47
  7. */
  8. use yii\helpers\Url;
  9. $this->params['breadcrumbs'] = [
  10. ['label' => Yii::t('app', 'Users'), 'url' => Url::to(['index'])],
  11. ['label' => Yii::t('app', 'Create') . Yii::t('app', 'Users')],
  12. ];
  13. /**
  14. * @var $model common\models\User
  15. */
  16. ?>
  17. <?= $this->render('_form', [
  18. 'model' => $model,
  19. ]);