'name' => $faker->sentence,
'slug' => str_random(10),
'html' => $html,
- 'text' => strip_tags($html)
+ 'text' => strip_tags($html),
+ 'revision_count' => 1
];
});
'name' => $faker->city,
'value' => $faker->sentence(3)
];
+});
+
+$factory->define(BookStack\Image::class, function ($faker) {
+ return [
+ 'name' => $faker->slug . '.jpg',
+ 'url' => $faker->url,
+ 'path' => $faker->url,
+ 'type' => 'gallery',
+ 'uploaded_to' => 0
+ ];
});
\ No newline at end of file