Error : Unable to create the "http:/localhost/shopping/public/src/img/" directory
my code :
$imageName = $product->id . '.' .
$request->file('image')->getClientOriginalExtension();
$request->file('image')->move(
url().'/public/src/img/', $imageName
);
Use the public_path()
helper, not url()
:
->move(public_path('src/img/'.$imageName));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With