30 lines
841 B
PHP
30 lines
841 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->call(AdminsSeeder::class);
|
|
$this->call(SettingsSeeder::class);
|
|
$this->call(DepartmentsSeeder::class);
|
|
$this->call(RolesSeeder::class);
|
|
$this->call(UsersSeeder::class);
|
|
$this->call(RoleUsersSeeder::class);
|
|
$this->call(PermissionsSeeder::class);
|
|
$this->call(PermissionRolesSeeder::class);
|
|
$this->call(LanguagesSeeder::class);
|
|
$this->call(WorkflowTypesSeeder::class);
|
|
$this->call(PrioritiesSeeder::class);
|
|
$this->call(DeliveryTypesSeeder::class);
|
|
$this->call(ContactsSeeder::class);
|
|
$this->call(DocumentTypesSeeder::class);
|
|
}
|
|
}
|