21 lines
575 B
PHP
21 lines
575 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use yii\helpers\Html;
|
||
|
|
|
||
|
|
/* @var $this yii\web\View */
|
||
|
|
/* @var $model common\models\HospitalStaining */
|
||
|
|
|
||
|
|
$this->title = 'แก้ไข: ' . $model->request_at;
|
||
|
|
$this->params['breadcrumbs'][] = ['label' => 'รายการส่งย้อมพิเศษ (EX)', 'url' => ['index']];
|
||
|
|
$this->params['breadcrumbs'][] = ['label' => $model->request_at, 'url' => ['view', 'id' => $model->id]];
|
||
|
|
$this->params['breadcrumbs'][] = 'แก้ไข';
|
||
|
|
?>
|
||
|
|
<div class="hospital-staining-update">
|
||
|
|
|
||
|
|
|
||
|
|
<?= $this->render('_form', [
|
||
|
|
'model' => $model,
|
||
|
|
]) ?>
|
||
|
|
|
||
|
|
</div>
|