I am still learning laravel. I want to upload multiple images for my products but with this code i can upload only one image, help me to upload multiple images with this code.
Then in your method store you will receive the files in $request->images as a collection. So you just need to work this collection of files as if you work with one image. But in a foreach loop.
foreach($request->images as $image){
//bla bla bla
}