Files
bogazici-api/database/seeders/DatabaseSeeder.php
2026-03-27 10:41:54 +03:00

32 lines
804 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace Database\Seeders;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
use WithoutModelEvents;
/**
* Seed the application's database.
*/
public function run(): void
{
$this->call([
RolePermissionSeeder::class,
AdminUserSeeder::class,
SettingSeeder::class,
CategorySeeder::class,
CourseSeeder::class,
CourseScheduleSeeder::class,
AnnouncementSeeder::class,
HeroSlideSeeder::class,
FaqSeeder::class,
// MenuSeeder kaldırıldı - navbar categories + courses tablosundan dinamik olarak besleniyor
CorporatePagesSeeder::class,
]);
}
}