3 namespace Database\Factories\Uploads;
5 use Illuminate\Database\Eloquent\Factories\Factory;
7 class ImageFactory extends Factory
10 * The name of the factory's corresponding model.
14 protected $model = \BookStack\Uploads\Image::class;
17 * Define the model's default state.
21 public function definition()
24 'name' => $this->faker->slug . '.jpg',
25 'url' => $this->faker->url,
26 'path' => $this->faker->url,