1234567891011121314151617 |
- <?php
- /* @var $this yii\web\View */
- /* @var $model common\models\Spider */
- $this->title = Yii::t('common', 'Create Spider');
- $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Spiders'), 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="spider-create">
- <?= $this->render('_form', [
- 'model' => $model,
- ]) ?>
- </div>
|