create.php 440 B

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