[WIP] Import Plans
This commit is contained in:
50
database/seeders/BenefitSeeder.php
Normal file
50
database/seeders/BenefitSeeder.php
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class BenefitSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$listOfBenefit = [
|
||||
[
|
||||
"service_code" => 'OP',
|
||||
"code" => "GP",
|
||||
"name" => "General Practitioner",
|
||||
"description" => "Consultation With General Practitioner"
|
||||
],
|
||||
[
|
||||
"service_code" => 'OP',
|
||||
"code" => "GP",
|
||||
"name" => "General Practitioner",
|
||||
"description" => "Consultation With General Practitioner"
|
||||
],
|
||||
[
|
||||
"service_code" => 'OP',
|
||||
"code" => "GP",
|
||||
"name" => "General Practitioner",
|
||||
"description" => "Consultation With General Practitioner"
|
||||
],
|
||||
[
|
||||
"service_code" => 'OP',
|
||||
"code" => "GP",
|
||||
"name" => "General Practitioner",
|
||||
"description" => "Consultation With General Practitioner"
|
||||
],
|
||||
[
|
||||
"service_code" => 'OP',
|
||||
"code" => "GP",
|
||||
"name" => "General Practitioner",
|
||||
"description" => "Consultation With General Practitioner"
|
||||
],
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user