2024-12-25 03:04:59 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use yii\helpers\Html;
|
|
|
|
|
|
|
|
|
|
/* @var $this yii\web\View */
|
|
|
|
|
/* @var $model common\models\CasePap */
|
|
|
|
|
|
2026-02-16 07:32:27 +00:00
|
|
|
$this->title = 'แก้ไขสถานะ Case Pap: ' . $model->id_case;
|
2024-12-25 03:04:59 +00:00
|
|
|
$this->params['breadcrumbs'][] = ['label' => 'Case Paps', 'url' => ['index']];
|
2026-02-16 07:32:27 +00:00
|
|
|
$this->params['breadcrumbs'][] = ['label' => $model->id_case, 'url' => ['view', 'id' => $model->id]];
|
|
|
|
|
$this->params['breadcrumbs'][] = 'แก้ไขสถานะ';
|
2024-12-25 03:04:59 +00:00
|
|
|
?>
|
2026-02-16 07:32:27 +00:00
|
|
|
<div class="card md-3">
|
|
|
|
|
<div class="card-header d-flex align-items-center justify-content-between">
|
|
|
|
|
<h5 class="card-title"><i class="ri-file-edit-line"></i> <?= $this->title ?></h5>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
<?= $this->render('_form', [
|
|
|
|
|
'model' => $model,
|
|
|
|
|
]) ?>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|