mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-13 11:41:31 +00:00
updated streamline-setup v2
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class InsuranceGroupsTableSeeder extends Seeder {
|
||||
/**
|
||||
* Run the database seeders.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run(){
|
||||
\Streamline\Models\InsuranceGroup::firstOrCreate(['id' => '1','name' => 'Group 1','contact_name' => 'Contact 1','contact_number' => '0777777777','insurance_start_date' => null,'created_by' => '1','updated_by' => '1']);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user