demo-pathology/frontend/modules/pathologist/views/surgical-gross/create.php

26 lines
585 B
PHP
Raw Normal View History

2025-12-26 03:03:19 +00:00
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model common\models\SurgicalGross */
$this->title = 'เพิ่ม Template Gross';
$this->params['breadcrumbs'][] = ['label' => 'Template Grosses', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
2026-01-09 10:35:33 +00:00
<div class="card">
<div class="card-header">
<div class="card-title">
<h5><?= Html::encode($this->title) ?></h5>
2025-12-26 03:03:19 +00:00
</div>
2026-01-09 10:35:33 +00:00
</div>
<div class="card-body">
2025-12-26 03:03:19 +00:00
2026-01-09 10:35:33 +00:00
<?= $this->render('_form', [
'model' => $model,
]) ?>
2025-12-26 03:03:19 +00:00
</div>
</div>