simedkom/database/seeders/DatabaseSeeder.php
2025-10-13 08:35:36 +07:00

32 lines
978 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(ClassificationSeeder::class);
$this->call(SubClassificationSeeder::class);
$this->call(LocationSeeder::class);
$this->call(SubLocationSeeder::class);
$this->call(ContentRecapClassificationSeeder::class);
$this->call(ContentRecapSeeder::class);
$this->call(NewsSeeder::class);
$this->call(CompanySeeder::class);
$this->call(MediaSeeder::class);
$this->call(JournalistSeeder::class);
$this->call(GovernmentAgencySeeder::class);
$this->call(MediaMonitoringSeeder::class);
$this->call(IssueManagementSeeder::class);
}
}