simedkom/database/seeders/DatabaseSeeder.php
myuqinurrohman 48560b9b3f feat: content recap classification
chore: add classification_id, social_media, and image field
2025-04-15 14:04:32 +07:00

34 lines
1.0 KiB
PHP

<?php
namespace Database\Seeders;
use App\Models\SubLocation;
use App\Models\User;
// 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);
}
}