3 namespace Database\Factories\Actions;
5 use Illuminate\Database\Eloquent\Factories\Factory;
7 class TagFactory extends Factory
10 * The name of the factory's corresponding model.
14 protected $model = \BookStack\Activity\Models\Tag::class;
17 * Define the model's default state.
21 public function definition()
24 'name' => $this->faker->city(),
25 'value' => $this->faker->sentence(3),