mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
17 lines
519 B
PHP
Executable File
17 lines
519 B
PHP
Executable File
<?php
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class PremiumsTableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeders.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run(){
|
|
\Streamline\Models\InsurancePremiums::firstOrCreate(['id' => '1','group_id' => '1','amount' => '20000','start_date' => '2019-02-01','end_date' => '2020-05-31','payment_date' => '2019-02-11','family_heads' => '1','family_amount' => '20000','receipt_number' => '0001','created_by' => '1']);
|
|
}
|
|
}
|