image is not showing in lightgallery using laravel blade?
Here is the code for saving the images in the ``storage``` folder $ImageName = time() . "." .$request->file('image')->getClientOriginalExtension(); // gives you image name with extension $path = $request->file('image')->storeAs('public/Inward', $ImageName); // image path the image saved in the storage folder is…