first commit

This commit is contained in:
ExtraNetwork
2026-05-12 17:04:54 +03:00
commit e5c4b6aa13
1425 changed files with 284735 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?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);
}
}