8 lines
243 B
PHP
8 lines
243 B
PHP
|
|
<?php
|
||
|
|
$this->title = 'View Case: '.$model->id_case;
|
||
|
|
?>
|
||
|
|
<h1><?=$this->title?></h1>
|
||
|
|
|
||
|
|
<?=$this->render('_patient', ['model' => $model])?>
|
||
|
|
<?=$this->render('_case_non_gyn', ['model' => $model])?>
|
||
|
|
<?=$this->render('_process', ['model' => $model])?>
|