*/ class SubjectFactory extends Factory { public function definition(): array { $name = fake()->unique()->randomElement(['mathematics', 'physics', 'chemistry', 'biology', 'arabic']); return [ 'name' => ucfirst($name), 'slug' => $name, ]; } }