19 lines
334 B
PHP
19 lines
334 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->call(UsersTableSeeder::class);
|
|
$this->call(QuestionnairesSeeder::class);
|
|
$this->call(RespondentSeeder::class);
|
|
}
|
|
}
|