DatabaseSeeder.php 1.48 KB
<?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('Таблица контакты загружена!!');

        $this->call(PartnersTableSeeder::class);
        $this->command->info('Таблица партнеры загружена!!');

    }
}