3 namespace Database\Factories\Activity\Models;
5 use Illuminate\Database\Eloquent\Factories\Factory;
7 class CommentFactory extends Factory
10 * The name of the factory's corresponding model.
14 protected $model = \BookStack\Activity\Models\Comment::class;
17 * Define the model's default state.
21 public function definition()
23 $text = $this->faker->paragraph(1);
24 $html = '<p>' . $text . '</p>';