mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
38 lines
880 B
PHP
Executable File
38 lines
880 B
PHP
Executable File
<?php
|
|
|
|
namespace Streamline\Models;
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use OwenIt\Auditing\Contracts\Auditable;
|
|
|
|
class Surgery extends Model implements Auditable
|
|
{
|
|
// use laravel-auditing to track database changes
|
|
use \OwenIt\Auditing\Auditable;
|
|
|
|
// use for soft deletes
|
|
use SoftDeletes;
|
|
|
|
protected $fillable = array(
|
|
'Episode_Id',
|
|
'Patient_Id',
|
|
'Procedure_Id',
|
|
'Surgery_Type',
|
|
'Surgeon',
|
|
'Assistant_Surgeon',
|
|
'Scrub_Nurse',
|
|
'Vicryl_Sutures_Used',
|
|
'Other_Sutures_Used',
|
|
'Authorised_Swab_Check',
|
|
'Theatre_Location',
|
|
'Time_Surgery_Completed',
|
|
'Date_Surgery_Completed',
|
|
'Theatre_Incharge',
|
|
'Estimated_Blood_Loss',
|
|
'Outcome',
|
|
'Other_Scrub_Staff',
|
|
'Comments',
|
|
);
|
|
} |