Files
streamline-emr/docker/streamline-src/database/seeders/UterusOperationTableSeeder.php
T
alec.turner 4a89356390 Import latest app updates from streamline
An updated set of source files and initialization was provided by streamline to
address issues observed during initial testing. These files have been updated in
order to generate a new set of app images.
2024-04-11 11:16:51 -07:00

26 lines
507 B
PHP

<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
use Streamline\Models\UterusOperation;
class UterusOperationTableSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
$options = [
'Cervical circlage', 'Myomectomy'
];
foreach ($options as $option) {
UterusOperation::firstOrCreate([
'name'=>$option,
'created_by' => 1
]);
}
}
}