*/ class TrabajadorFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'nombre'=> $this->faker->name, 'telefono'=> $this->faker->phoneNumber(), 'genero'=> $this->faker->randomElement(['Masculino','Femenino']), 'sueldo'=> $this->faker->randomFloat(2, 1000, 100000), 'puesto'=> $this->faker->jobTitle(), 'numero_seguro'=> $this->faker->randomNumber(8), 'correo_electronico'=> $this->faker->email(), ]; } }