surat/frontend/modules/register/views/necropsy-consult/create.php

1 line
700 B
PHP
Raw Normal View History

2024-12-25 03:04:59 +00:00
<?php use yii\helpers\Html; /* @var $this yii\web\View */ /* @var $model common\models\NecropsyConsult */ $this->title = 'Create Necropsy Consult'; $this->params['breadcrumbs'][] = ['label' => 'Necropsy Consults', 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?> <div class="cyto-non-gyn-consult-create"> <div class="card"> <div class="card-header"> <div class="header-top"> <h4 class="card-title"><?= Html::encode($this->title) ?></h4> </div> </div> <div class="card-body"> <?= $this->render('_form', [ 'model' => $model, ]) ?> </div> </div> </div>