EVOLUTION-NINJA
Edit File: LogModel.php
<?php namespace App\Models; use CodeIgniter\Model; class LogModel extends Model { protected $table ='anaesthesia_logbook'; protected $allowedFields = [ 'id', 'case_num', 'date_of_operate', 'time_of_operate', 'reference', 'age', 'gender', 'asa', 'height', 'weight', 'BMI', 'hospital', 'speciality', 'obstetrics_specialty', 'other_speciality', 'surgery_location', 'surgery_procedure', 'category', 'Invasive', 'done_by', 'supervision', 'anaesthesia', 'special_procedures', 'others_specialprocedure', 'sp_airway_ventilation', 'others_av', 'sp_cvs', 'sp_cns', 'sp_others', 'ga_technique', 'ga_airway_management', 'cnb_technique', 'cnb_catheter', 'cnb_outcome', 'pnb_block_site', 'pnb_block_location', 'pnbl_capppnbl', 'others_chest', 'pnbl_headneck', 'others_headneck', 'pnbl_lowerlimb', 'others_lowerlimb', 'pnbl_upperlimb', 'other_upperlimb', 'pmb_technique', 'pnb_catheter', 'success', 'pain_review_type', 'case_tags', 'notes', 'dr_id', 'cvc', 'Cardiovascular', 'Endocrine_and_Metabolic', 'Respiratory', 'Renal_and_Hepatic', 'Neurological', 'Hematologic', 'Mental_Heath', 'Allergies', 'Other_Considerations', 'Cardiovascular_check', 'Cardiovascular_other', 'Endocrine_check', 'Endocrine_other', 'Respiratory_check', 'Respiratory_other', 'Renal_check', 'Renal_other', 'Neurological_check', 'Neurological_other', 'Hematologic_check', 'Hematologic_other', 'Mental_check', 'Mental_other', 'Allergies_check', 'Allergies_other', 'Considerations_check', 'Considerations_other', 'toolkit_All', 'toolkit_gender_age', 'toolkit_bmi', 'toolkit_Comorbidies', 'toolkit_asa_status', 'toolkit_others', 'toolkit_others_input', 'supervising' ]; } ?>