File: /mnt/data/ghayatcom/ghayatcom-api/database/seeders/DoctorSymptomsSeeder.php
<?php
namespace Database\Seeders;
use App\DoctorSymptoms;
use Illuminate\Database\Seeder;
class DoctorSymptomsSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$datas = [
1 => ['template_id'=>1, 'symptom_name'=>'Shortness of breath', 'created_by' => 1],
2 => ['template_id'=>1, 'symptom_name'=>'Coughing', 'created_by' => 1],
3 => ['template_id'=>1, 'symptom_name'=>'Fever', 'created_by' => 1],
4 => ['template_id'=>1, 'symptom_name'=>'Sore throat', 'created_by' => 1],
5 => ['template_id'=>1, 'symptom_name'=>'Chills', 'created_by' => 1],
6 => ['template_id'=>1, 'symptom_name'=>'Loss of smell / taste', 'created_by' => 1],
7 => ['template_id'=>1, 'symptom_name'=>'Sputum', 'created_by' => 1],
8 => ['template_id'=>1, 'symptom_name'=>'Unusual fatigue', 'created_by' => 1],
9 => ['template_id'=>1, 'symptom_name'=>'Rhinitis', 'created_by' => 1],
10 =>['template_id'=>1, 'symptom_name'=>'Weight loss', 'created_by' => 1],
11 =>['template_id'=>1, 'symptom_name'=>'Swelling of hands / feet', 'created_by' => 1],
12 =>['template_id'=>1, 'symptom_name'=>'Dizziness', 'created_by' => 1],
13 =>['template_id'=>1, 'symptom_name'=>'Headaches', 'created_by' => 1],
14 =>['template_id'=>1, 'symptom_name'=>'Migraines', 'created_by' => 1],
15 =>['template_id'=>1, 'symptom_name'=>'Sinus pain / discharge', 'created_by' => 1],
16 =>['template_id'=>1, 'symptom_name'=>'Excessive snoring', 'created_by' => 1],
17 =>['template_id'=>1, 'symptom_name'=>'Chest tightness', 'created_by' => 1],
18 =>['template_id'=>1, 'symptom_name'=>'Excessive urination', 'created_by' => 1],
19 =>['template_id'=>1, 'symptom_name'=>'Anxiety', 'created_by' => 1],
20 =>['template_id'=>1, 'symptom_name'=>'Panic attacks', 'created_by' => 1],
21 =>['template_id'=>1, 'symptom_name'=>'Haemoptysis', 'created_by' => 1],
22 =>['template_id'=>1, 'symptom_name'=>'Wheezing', 'created_by' => 1],
23 =>['template_id'=>1, 'symptom_name'=>'Asthma', 'created_by' => 1],
24 =>['template_id'=>1, 'symptom_name'=>'Other', 'created_by' => 1],
24 =>['template_id'=>2, 'symptom_name'=>'Palpitations', 'created_by' => 1],
25 =>['template_id'=>2, 'symptom_name'=>'Chest pain', 'created_by' => 1],
26 =>['template_id'=>2, 'symptom_name'=>'Orthopnoea', 'created_by' => 1],
27 =>['template_id'=>2, 'symptom_name'=>'Paroxysmal nocturnal dyspnoea', 'created_by' => 1],
28 =>['template_id'=>2, 'symptom_name'=>'Claudication', 'created_by' => 1],
29 =>['template_id'=>2, 'symptom_name'=>'Varicose veins', 'created_by' => 1],
30 =>['template_id'=>2, 'symptom_name'=>'Other', 'created_by' => 1],
31 =>['template_id'=>3, 'symptom_name'=>'Swollen glands', 'created_by' => 1],
32 =>['template_id'=>3, 'symptom_name'=>'Sore throat', 'created_by' => 1],
33 =>['template_id'=>3, 'symptom_name'=>'Hearing loss', 'created_by' => 1],
34 =>['template_id'=>3, 'symptom_name'=>'Ringing', 'created_by' => 1],
35 =>['template_id'=>3, 'symptom_name'=>'Earaches', 'created_by' => 1],
36 =>['template_id'=>3, 'symptom_name'=>'Draining ear', 'created_by' => 1],
37 =>['template_id'=>3, 'symptom_name'=>'Draining nose', 'created_by' => 1],
38 =>['template_id'=>3, 'symptom_name'=>'Nose obstruction', 'created_by' => 1],
39 =>['template_id'=>3, 'symptom_name'=>'Epistaxis', 'created_by' => 1],
40 =>['template_id'=>3, 'symptom_name'=>'Mouth sores', 'created_by' => 1],
41 =>['template_id'=>3, 'symptom_name'=>'Bleeding gums', 'created_by' => 1],
42 =>['template_id'=>3, 'symptom_name'=>'Longue ulcers / lumps', 'created_by' => 1],
43 =>['template_id'=>3, 'symptom_name'=>'Bad breath / taste', 'created_by' => 1],
44 =>['template_id'=>3, 'symptom_name'=>'Hoarseness', 'created_by' => 1],
45 =>['template_id'=>3, 'symptom_name'=>'Other', 'created_by' => 1],
46 =>['template_id'=>4, 'symptom_name'=>'Abdominal pain', 'created_by' => 1],
47 =>['template_id'=>4, 'symptom_name'=>'Nausea', 'created_by' => 1],
48 =>['template_id'=>4, 'symptom_name'=>'Vomiting', 'created_by' => 1],
49 =>['template_id'=>4, 'symptom_name'=>'Bleeding per rectum', 'created_by' => 1],
50 =>['template_id'=>4, 'symptom_name'=>'Melena', 'created_by' => 1],
51 =>['template_id'=>4, 'symptom_name'=>'Mucus per rectum', 'created_by' => 1],
52 =>['template_id'=>4, 'symptom_name'=>'Heartburn', 'created_by' => 1],
53 =>['template_id'=>4, 'symptom_name'=>'Constipation', 'created_by' => 1],
54 =>['template_id'=>4, 'symptom_name'=>'Diarrhoea', 'created_by' => 1],
55 =>['template_id'=>4, 'symptom_name'=>'Faecal incontinence', 'created_by' => 1],
56 =>['template_id'=>4, 'symptom_name'=>'Tenesmus', 'created_by' => 1],
57 =>['template_id'=>4, 'symptom_name'=>'Odynophagia', 'created_by' => 1],
58 =>['template_id'=>4, 'symptom_name'=>'Dysphagia', 'created_by' => 1],
59 =>['template_id'=>4, 'symptom_name'=>'Haematemesis', 'created_by' => 1],
60 =>['template_id'=>4, 'symptom_name'=>'Change in bowel habits', 'created_by' => 1],
61 =>['template_id'=>4, 'symptom_name'=>'Flatulence', 'created_by' => 1],
62 =>['template_id'=>4, 'symptom_name'=>'Other', 'created_by' => 1],
63 =>['template_id'=>5, 'symptom_name'=>'Haematuria', 'created_by' => 1],
64 =>['template_id'=>5, 'symptom_name'=>'Urinary incontinence', 'created_by' => 1],
65 =>['template_id'=>5, 'symptom_name'=>'Dysuria, Erectile dysfunction', 'created_by' => 1],
66 =>['template_id'=>5, 'symptom_name'=>'Haemospermia', 'created_by' => 1],
67 =>['template_id'=>5, 'symptom_name'=>'Painful intercourse', 'created_by' => 1],
68 =>['template_id'=>5, 'symptom_name'=>'Lower urinary tract symptoms', 'created_by' => 1],
69 =>['template_id'=>5, 'symptom_name'=>'Testicular pain', 'created_by' => 1],
70 =>['template_id'=>5, 'symptom_name'=>'Discharge', 'created_by' => 1],
71 =>['template_id'=>5, 'symptom_name'=>'Other', 'created_by' => 1],
72 =>['template_id'=>6, 'symptom_name'=>'Loss of energy', 'created_by' => 1],
73 =>['template_id'=>6, 'symptom_name'=>'Pain', 'created_by' => 1],
74 =>['template_id'=>6, 'symptom_name'=>'Weakness', 'created_by' => 1],
75 =>['template_id'=>6, 'symptom_name'=>'Gait problems', 'created_by' => 1],
76 =>['template_id'=>6, 'symptom_name'=>'Convulsions', 'created_by' => 1],
77 =>['template_id'=>6, 'symptom_name'=>'Numbness', 'created_by' => 1],
78 =>['template_id'=>6, 'symptom_name'=>'Tingling', 'created_by' => 1],
79 =>['template_id'=>6, 'symptom_name'=>'Tremors', 'created_by' => 1],
80 =>['template_id'=>6, 'symptom_name'=>'Paralysis', 'created_by' => 1],
81 =>['template_id'=>6, 'symptom_name'=>'Head injury', 'created_by' => 1],
82 =>['template_id'=>6, 'symptom_name'=>'Dizziness', 'created_by' => 1],
83 =>['template_id'=>6, 'symptom_name'=>'Faintness', 'created_by' => 1],
84 =>['template_id'=>6, 'symptom_name'=>'Visual disturbance', 'created_by' => 1],
85 =>['template_id'=>6, 'symptom_name'=>'Deafness', 'created_by' => 1],
86 =>['template_id'=>6, 'symptom_name'=>'Tinnitus', 'created_by' => 1],
87 =>['template_id'=>6, 'symptom_name'=>'Memory / concentration changes', 'created_by' => 1],
88 =>['template_id'=>6, 'symptom_name'=>'Other', 'created_by' => 1],
89 =>['template_id'=>7, 'symptom_name'=>'Diplopia', 'created_by' => 1],
90 =>['template_id'=>7, 'symptom_name'=>'Redness', 'created_by' => 1],
91 =>['template_id'=>7, 'symptom_name'=>'Itchiness', 'created_by' => 1],
92 =>['template_id'=>7, 'symptom_name'=>'Eye tiredness', 'created_by' => 1],
93 =>['template_id'=>7, 'symptom_name'=>'Pain', 'created_by' => 1],
94 =>['template_id'=>7, 'symptom_name'=>'Flashes', 'created_by' => 1],
95 =>['template_id'=>7, 'symptom_name'=>'Foreign body', 'created_by' => 1],
96 =>['template_id'=>7, 'symptom_name'=>'Discharge', 'created_by' => 1],
97 =>['template_id'=>7, 'symptom_name'=>'Blurred vision', 'created_by' => 1],
98 =>['template_id'=>7, 'symptom_name'=>'Other', 'created_by' => 1],
99 =>['template_id'=>8, 'symptom_name'=>'Fatigue', 'created_by' => 1],
100 =>['template_id'=>8, 'symptom_name'=>'Low back pain', 'created_by' => 1],
101 =>['template_id'=>8, 'symptom_name'=>'Other', 'created_by' => 1],
102 =>['template_id'=>9, 'symptom_name'=>'Excessive thirst / hunger', 'created_by' => 1],
103 =>['template_id'=>9, 'symptom_name'=>'Weight loss', 'created_by' => 1],
104 =>['template_id'=>9, 'symptom_name'=>'Weight gain', 'created_by' => 1],
105 =>['template_id'=>9, 'symptom_name'=>'Heat / cold intolerance', 'created_by' => 1],
106 =>['template_id'=>9, 'symptom_name'=>'Hair thinning', 'created_by' => 1],
107 =>['template_id'=>9, 'symptom_name'=>'Hirsutism', 'created_by' => 1],
108 =>['template_id'=>9, 'symptom_name'=>'Acromegaly', 'created_by' => 1],
109 =>['template_id'=>9, 'symptom_name'=>'Change in sweating', 'created_by' => 1],
110 =>['template_id'=>9, 'symptom_name'=>'Other', 'created_by' => 1],
111 =>['template_id'=>10, 'symptom_name'=>'Change in skin colour', 'created_by' => 1],
112 =>['template_id'=>10, 'symptom_name'=>'Itching', 'created_by' => 1],
113 =>['template_id'=>10, 'symptom_name'=>'Change in hair / nails', 'created_by' => 1],
114 =>['template_id'=>10, 'symptom_name'=>'Hives', 'created_by' => 1],
115 =>['template_id'=>10, 'symptom_name'=>'Eczema', 'created_by' => 1],
116 =>['template_id'=>10, 'symptom_name'=>'Psoriasis', 'created_by' => 1],
117 =>['template_id'=>10, 'symptom_name'=>'Skin lump', 'created_by' => 1],
118 =>['template_id'=>10, 'symptom_name'=>'Other', 'created_by' => 1],
119 =>['template_id'=>11, 'symptom_name'=>'Dyspareunia', 'created_by' => 1],
120 =>['template_id'=>11, 'symptom_name'=>'Irregular periods', 'created_by' => 1],
121 =>['template_id'=>11, 'symptom_name'=>'Vaginal discharge', 'created_by' => 1],
122 =>['template_id'=>11, 'symptom_name'=>'Incontinence', 'created_by' => 1],
123 =>['template_id'=>11, 'symptom_name'=>'Other', 'created_by' => 1],
124 =>['template_id'=>12, 'symptom_name'=>'Concentration difficulties', 'created_by' => 1],
125 =>['template_id'=>12, 'symptom_name'=>'Anxiety', 'created_by' => 1],
126 =>['template_id'=>12, 'symptom_name'=>'Panic attacks', 'created_by' => 1],
127 =>['template_id'=>12, 'symptom_name'=>'Self-harm thoughts', 'created_by' => 1],
128 =>['template_id'=>12, 'symptom_name'=>'Insomnia', 'created_by' => 1],
129 =>['template_id'=>12, 'symptom_name'=>'Feeling of guilt', 'created_by' => 1],
130 =>['template_id'=>12, 'symptom_name'=>'Thoughts of harm to others', 'created_by' => 1],
131 =>['template_id'=>12, 'symptom_name'=>'Depression', 'created_by' => 1],
132 =>['template_id'=>12, 'symptom_name'=>'Increased libido', 'created_by' => 1],
133 =>['template_id'=>12, 'symptom_name'=>'Increased irritability', 'created_by' => 1],
134 =>['template_id'=>12, 'symptom_name'=>'Suspiciousness', 'created_by' => 1],
135 =>['template_id'=>12, 'symptom_name'=>'Crying spells', 'created_by' => 1],
136 =>['template_id'=>12, 'symptom_name'=>'Racing thoughts', 'created_by' => 1],
137 =>['template_id'=>12, 'symptom_name'=>'Anhedonia', 'created_by' => 1],
138 =>['template_id'=>12, 'symptom_name'=>'Increase risky behaviour', 'created_by' => 1],
139 =>['template_id'=>12, 'symptom_name'=>'Loss of interest', 'created_by' => 1],
140 =>['template_id'=>12, 'symptom_name'=>'Change in appetite', 'created_by' => 1],
141 =>['template_id'=>12, 'symptom_name'=>'Hallucinations', 'created_by' => 1],
142 =>['template_id'=>12, 'symptom_name'=>'Impulsivity', 'created_by' => 1],
143 =>['template_id'=>12, 'symptom_name'=>'Grandiosity', 'created_by' => 1],
144 =>['template_id'=>12, 'symptom_name'=>'Talkative', 'created_by' => 1],
145 =>['template_id'=>12, 'symptom_name'=>'Touchy', 'created_by' => 1],
146 =>['template_id'=>12, 'symptom_name'=>'Relationship difficulties', 'created_by' => 1],
147 =>['template_id'=>12, 'symptom_name'=>'Deliberate property destruction', 'created_by' => 1],
148 =>['template_id'=>12, 'symptom_name'=>'Loneliness', 'created_by' => 1],
149 =>['template_id'=>12, 'symptom_name'=>'Cyber addiction', 'created_by' => 1],
150 =>['template_id'=>12, 'symptom_name'=>'Emotional / physical / sexual abuse', 'created_by' => 1],
151 =>['template_id'=>12, 'symptom_name'=>'Other', 'created_by' => 1],
152 =>['template_id'=>13, 'symptom_name'=>'Other', 'created_by' => 1],
];
foreach ($datas as $id => $data) {
DoctorSymptoms::create($data);
}
}
}