| Current Path : /var/www/html/dyna-project/views/tasks/ |
| Current File : /var/www/html/dyna-project/views/tasks/create.php |
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model app\models\Tasks */
$this->title = 'Create Tasks';
$this->params['breadcrumbs'][] = ['label' => 'Tasks', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="tasks-create">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>