aboutsummaryrefslogtreecommitdiff
path: root/database
diff options
context:
space:
mode:
Diffstat (limited to 'database')
-rw-r--r--database/factories/PostFactory.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/database/factories/PostFactory.php b/database/factories/PostFactory.php
index 0b00530..ea950a1 100644
--- a/database/factories/PostFactory.php
+++ b/database/factories/PostFactory.php
@@ -22,7 +22,7 @@ class PostFactory extends Factory
public function definition()
{
return [
- 'title' => $this->faker->title,
+ 'title' => $this->faker->word,
'author' => $this->faker->name,
'text' => $this->faker->text,
];