Remove views from blog article factory

This commit is contained in:
Daniel_I_Am 2021-09-04 15:41:34 +02:00
parent a8a008314e
commit b1d5046ed0

View File

@ -27,7 +27,6 @@ class BlogArticleFactory extends Factory
'date' => $this->faker->dateTimeBetween('-100 days'), 'date' => $this->faker->dateTimeBetween('-100 days'),
'summary' => $this->faker->text(200), 'summary' => $this->faker->text(200),
'content' => $this->faker->text(1000), 'content' => $this->faker->text(1000),
'views' => $this->faker->numberBetween(0, 50),
'published' => $this->faker->boolean(80), 'published' => $this->faker->boolean(80),
]; ];
} }