Files
api-extranetwork/database/seeds/DatabaseSeeder.php
ExtraNetwork e5c4b6aa13 first commit
2026-05-12 17:04:54 +03:00

27 lines
847 B
PHP

<?php
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$this->call(FirstRunSeeder::class);
$this->call(PropertyFactSeeder::class);
$this->call(PropertyAdditionalInfoKeySeeder::class);
$this->call(PropertyAdditionalInfoKeyLocaleSeeder::class);
$this->call(PropertyExecuteTypeSeeder::class);
$this->call(PropertyExecuteTypeLocaleSeeder::class);
$this->call(PropertyExecuteSeeder::class);
// $this->call(PropertyPhotoSeeder::class);
$this->call(PropertyTypeSeeder::class);
$this->call(PropertyGoogleLabelSeeder::class);
$this->call(PropertyChainSeeder::class);
}
}