Dec 23, 2020
5
Level 5
Faker Image error
Hi i m newbie to Laravel and i m building a project which contains image uploading. Here is my factory code.
'''' $factory->define(News::class, function (Faker $faker) { return [ 'title'=>$faker->sentence, 'body'=>$faker->paragraph, 'image'=> $faker->image(storage_path('images'),400,300, null, false), 'category_id'=>rand(1,5), ]; }); ''''
And the error is
InvalidArgumentException
Cannot write to directory "C:\xampp\htdocs\esportsblog\storage\images"
i also tried with public_path but still got this error.Help me with ths plx. btw i m using window.
Level 39
Second,, use your public directory :
image' => $faker->image('public/storage/images',400,300, null, false)
1 like
Please or to participate in this conversation.