add company
This commit is contained in:
20
backend/modules/company/views/company/create.php
Normal file
20
backend/modules/company/views/company/create.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model backend\modules\company\models\Company */
|
||||
|
||||
$this->title = 'Create Company';
|
||||
$this->params['breadcrumbs'][] = ['label' => 'Companies', 'url' => ['index']];
|
||||
$this->params['breadcrumbs'][] = $this->title;
|
||||
?>
|
||||
<div class="company-create">
|
||||
|
||||
|
||||
<?= $this->render('_form', [
|
||||
'model' => $model,
|
||||
]) ?>
|
||||
|
||||
</div>
|
Reference in New Issue
Block a user