File: /var/www/vhost/disk-apps/dev-telemedicina.teky.com.co/database/seeds/FormsTableSeeder.php
<?php
use Telemedicina\Form;
use Illuminate\Database\Seeder;
class FormsTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Form::create([
"name" => "Ginecoobstetricia",
"description" => "Especialidad ginecoobstetricia",
"specialty_id" => 1,
"visibility" => "panel",
"priority" => 1,
"active" => true,
]);
Form::create([
"name" => "Covid-19",
"description" => "Coronavirus 2019",
"specialty_id" => 2,
"visibility" => "both",
"priority" => 1,
"active" => true,
]);
}
}