10 lines
189 B
PHP
10 lines
189 B
PHP
|
|
<?php
|
||
|
|
use yii\helpers\Html;
|
||
|
|
use kartik\detail\DetailView;
|
||
|
|
|
||
|
|
$this->title = $model->caseFish->id_case;
|
||
|
|
?>
|
||
|
|
<h1><?=$this->title?></h1>
|
||
|
|
<?=$this->render('_patient', [
|
||
|
|
'model' => $model,
|
||
|
|
])?>
|