File: /var/www/ipsremont-demo/database/seeds/Init2Seeder.php
<?php
use Illuminate\Database\Seeder;
/**
* Class InitSeeder
*/
class Init2Seeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$this->call(PartSeeder::class);
$this->call(PartsStorageSeeder::class);
$this->call(DevicesSeeder::class);
$this->call(SchemaSeeder::class);
$this->call(DeviceSchemaSeeder::class);
$this->call(DevicePartsSeeder::class);
$this->call(AddUsersToServices::class);
$this->call(AddressSeeder::class);
$this->call(RepairReportSeeder::class);
}
}