20 lines
369 B
PHP
20 lines
369 B
PHP
<?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',
|
|
];
|
|
}
|