*/ class KelasFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'nama_kelas' => $this->faker->unique()->bothify('Kelas-?#'), 'guru_id' => Guru::inRandomOrder()->first()?->id ?? 1, ]; } }