surat/frontend/modules/pathologist/views/ca-confirm/index.php

43 lines
1.1 KiB
PHP
Raw Normal View History

2025-04-09 03:40:52 +00:00
<?php
2025-04-03 22:34:40 +00:00
use yii\helpers\Html;
use yii\grid\GridView;
/* @var $this yii\web\View */
2025-04-09 03:40:52 +00:00
/* @var $searchModel frontend\modules\pathologist\models\CaConfirmSearch */
2025-04-03 22:34:40 +00:00
/* @var $dataProvider yii\data\ActiveDataProvider */
$this->title = 'Ca Confirms';
$this->params['breadcrumbs'][] = $this->title;
?>
2025-04-09 03:40:52 +00:00
<h1><?= Html::encode($this->title) ?></h1>
2025-04-03 22:34:40 +00:00
2025-04-09 03:40:52 +00:00
<p>
<?= Html::a('Create Ca Confirm', ['create'], ['class' => 'btn btn-success']) ?>
</p>
2025-04-03 22:34:40 +00:00
2025-04-09 03:40:52 +00:00
<?php // echo $this->render('_search', ['model' => $searchModel]); ?>
<?= GridView::widget([
2025-04-03 22:34:40 +00:00
'dataProvider' => $dataProvider,
2025-04-09 03:40:52 +00:00
'filterModel' => $searchModel,
'columns' => [
2025-04-03 22:34:40 +00:00
['class' => 'yii\grid\SerialColumn'],
2025-04-09 03:40:52 +00:00
'id',
'id_case',
'report_type',
'pathologist_id',
'pathologist2_id',
//'diagnosis_id',
//'remark:ntext',
//'created_at',
//'updated_at',
//'created_by',
//'updated_by',
2025-04-03 22:34:40 +00:00
['class' => 'yii\grid\ActionColumn'],
],
2025-04-09 03:40:52 +00:00
]); ?>