20 lines
323 B
PHP
20 lines
323 B
PHP
<?php
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
Eloquent::unguard();
|
|
|
|
$this->call('SettingsTableSeeder');
|
|
$this->call('IncidentTableSeeder');
|
|
$this->call('ComponentTableSeeder');
|
|
}
|
|
}
|