*/ class DocentesFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'nombre' => $this->faker->name, 'telefono' => $this->faker->phoneNumber, 'correo' => $this->faker->email, 'tipo_licencia' => $this->faker->randomElement(['Vigente', 'No Vigente']), 'materia' => $this->faker->randomElement(['Matemáticas', 'Programación', 'Base de datos', 'Sistemas Operativos', 'Redes']), ]; } }