how can I add multiple images using faker in Factory Laravel 9

107 Views Asked by At

Please help, how can I add multiple url of images to the database using faker in Factory

public function definition()
{
    return array(
        'title' => $this->faker->colorName,
        'file_url' => $this->faker->imageUrl(748, 500),
    );
}

I didn't find a solution

0

There are 0 best solutions below