mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
17 lines
553 B
PHP
Executable File
17 lines
553 B
PHP
Executable File
<?php
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class PatientDiscountsTableSeeder extends Seeder {
|
|
/**
|
|
* Run the database seeders.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run() {
|
|
\Streamline\Models\PatientDiscount::firstOrCreate(['id' => '1', 'patient_category' => '1', 'discount' => '0', 'pay_later' => '0', 'created_at' => '1']);
|
|
\Streamline\Models\PatientDiscount::firstOrCreate(['id' => '2', 'patient_category' => '2', 'discount' => '0', 'pay_later' => '1', 'created_at' => '1']);
|
|
}
|
|
}
|