use s3 storage laravel
return Storage::disk(‘s3’)->response(‘images/’ . $image->filename); Here is what the above code is Doing: 1. We’re using the Storage facade to access the s3 disk. 2. We’re using the response method to generate a response that will be sent back to the browser. 3. We’re passing the path to the image as the first argument to the…