*/ class ServicioFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = Servicio::class; /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'nombre' => $this->faker->words(3, true), 'descripcion' => $this->faker->sentence(12), ]; } }