prolab-api/backend/views/lis-lab-code-mapping/create.php

20 lines
457 B
PHP

<?php
use yii\helpers\Html;
/** @var yii\web\View $this */
/** @var common\models\LISLabCodeMapping $model */
$this->title = 'Create Lis Lab Code Mapping';
$this->params['breadcrumbs'][] = ['label' => 'Lis Lab Code Mappings', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="lislab-code-mapping-create">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>