seeder
This commit is contained in:
parent
5409947521
commit
f5c59bbea2
@ -25,20 +25,25 @@ public function run(): void
|
|||||||
'name' => 'CMCH',
|
'name' => 'CMCH',
|
||||||
'is_active' => true,
|
'is_active' => true,
|
||||||
]);
|
]);
|
||||||
Institute::create([
|
$dummy = Institute::create([
|
||||||
'name' => 'Dummy Site',
|
'name' => 'Dummy Site',
|
||||||
'is_active' => false,
|
'is_active' => false,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$chev_xr = Facility::create(
|
$chev_xr = Facility::create(
|
||||||
[
|
[
|
||||||
'server_name' => 'Orthanc Main',
|
'is_active' => true,
|
||||||
'host' => 'pacs.mylabctg.com',
|
'name' => 'Chevron XR',
|
||||||
'port' => 8042,
|
|
||||||
'ae_title' => 'RADFUSION',
|
|
||||||
'institute_id' => $chev->id,
|
'institute_id' => $chev->id,
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
$cmch_mr = Facility::create(
|
||||||
|
[
|
||||||
|
'is_active' => false,
|
||||||
|
'name' => 'CMCH MR',
|
||||||
|
'institute_id' => $cmch->id,
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
DB::table('institute_names')->insert([
|
DB::table('institute_names')->insert([
|
||||||
'name' => 'CHEVRON CLINICAL LABORATORY , PANCHLAISH,CTG',
|
'name' => 'CHEVRON CLINICAL LABORATORY , PANCHLAISH,CTG',
|
||||||
|
Loading…
Reference in New Issue
Block a user