mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 19:21:33 +00:00
16 lines
456 B
PHP
Executable File
16 lines
456 B
PHP
Executable File
<?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']);
|
|
}
|
|
}
|