File: /var/www/ipsremont-demo/database/seeds/InitSeeder.php
<?php
use Illuminate\Database\Seeder;
/**
* Class InitSeeder
*/
class InitSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$this->call(UserAdminSeeder::class);
$this->call(RoleSeeder::class);
$this->call(RolePermissionSeeder::class);
$this->call(PermissionServiceRoleSeeder::class);
$this->call(PermissionOrdersSeeder::class);
$this->call(PermissionServicesMy::class);
$this->call(SettingsPermissionSeeder::class);
$this->call(EmailsPermissionSeeder::class);
$this->call(RolesConstructor::class);
}
}