Добавлено формирование отчета

И индикатор реанимации
This commit is contained in:
brusnitsyn
2026-04-24 16:44:58 +09:00
parent 1de9fd3ef8
commit fd0e6ee817
5 changed files with 259 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ReanimationPatientIndicator extends Model
{
protected $primaryKey = 'reanimation_patient_indicator_id';
protected $fillable = [
'rf_department_id',
'rf_report_id',
'rf_medicalhistory_id',
'indicator',
'comment',
'created_by',
];
}