25 lines
628 B
PHP
25 lines
628 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
$this->call(RoleSeeder::class);
|
|
$this->call(UserSeeder::class);
|
|
$this->call(ProvinceSeeder::class);
|
|
$this->call(NewsTypeSeeder::class);
|
|
$this->call(NewsCategorySeeder::class);
|
|
$this->call(HoroscopeSeeder::class);
|
|
$this->call(WebsiteSettingSeeder::class);
|
|
$this->call(AdsCategorySeeder::class);
|
|
}
|
|
}
|