mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
18 lines
431 B
PHP
Executable File
18 lines
431 B
PHP
Executable File
<?php
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class HeadsofFamilyTableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeders.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
\Streamline\Models\HeadOfFamily::firstOrCreate(['id' => '1','name' => 'Test Insurance Active','photo' => null,'group_id' => '1','patient_id' => '3','created_by' => '1','updated_by' => '1']);
|
|
}
|
|
}
|