Blame view

database/seeders/DatabaseSeeder.php 1.48 KB
242debab8   thesolarwind   Первый коммит в п...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  <?php
  
  namespace Database\Seeders;
  
  // use Illuminate\Database\Console\Seeds\WithoutModelEvents;
  use Illuminate\Database\Seeder;
  
  class DatabaseSeeder extends Seeder
  {
      /**
       * Seed the application's database.
       *
       * @return void
       */
      public function run()
      {
          // \App\Models\User::factory(10)->create();
  
          // \App\Models\User::factory()->create([
          //     'name' => 'Test User',
          //     'email' => 'test@example.com',
          // ]);
  
          $this->call(AreasTableSeeder::class);
          $this->command->info('Таблица объекты недвижимости загружена!!');
  
          $this->call(Type_areaTableSeeder::class);
          $this->command->info('Таблица тип недвижимости загружена!!');
  
          $this->call(Format_areaTableSeeder::class);
          $this->command->info('Таблица форматы недвижимости загружена!!');
  
          $this->call(NewsTableSeeder::class);
          $this->command->info('Таблица новости загружена!!');
  
          $this->call(HousesTableSeeder::class);
          $this->command->info('Таблица офисы недвижимости загружена!!');
  
          $this->call(ContactsTableSeeder::class);
          $this->command->info('Таблица контакты загружена!!');
d2e0d4fcb   Андрей Ларионов   Добавление миграц...
41
42
          $this->call(PartnersTableSeeder::class);
          $this->command->info('Таблица партнеры загружена!!');
242debab8   thesolarwind   Первый коммит в п...
43
44
      }
  }