*/ class ContenidoWebFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = ContenidoWeb::class; /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'quienessomos' => $this->faker->paragraph(3), ]; } }