*/ class TextWidgetFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'title' => $this->faker->sentence(), 'description' => $this->faker->paragraph(), 'content' => $this->faker->text(500), ]; } }