Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to save uploaded image to Storage in laravel?

I am using Image intervention to save an image to the storage folder. I have the code below and it seems to just save a file name with a blank image. I think I need a way for the file contents to be written to the folder but struggling for the snippet.

if ($request->hasFile('photo')) {
            $image      = $request->file('photo');
            $fileName   = time() . '.' . $image->getClientOriginalExtension();

            $img = Image::make($image->getRealPath());
            $img->resize(120, 120, function ($constraint) {
                $constraint->aspectRatio();                 
            });

            //dd();
            Storage::disk('local')->put('images/1/smalls'.'/'.$fileName, $img, 'public');
like image 792
Eden WebStudio Avatar asked Feb 01 '17 21:02

Eden WebStudio


4 Answers

You need to do

if ($request->hasFile('photo')) {
            $image      = $request->file('photo');
            $fileName   = time() . '.' . $image->getClientOriginalExtension();

            $img = Image::make($image->getRealPath());
            $img->resize(120, 120, function ($constraint) {
                $constraint->aspectRatio();                 
            });

            $img->stream(); // <-- Key point

            //dd();
            Storage::disk('local')->put('images/1/smalls'.'/'.$fileName, $img, 'public');
}
like image 123
Avik Aghajanyan Avatar answered Sep 28 '22 05:09

Avik Aghajanyan


if ($request->hasFile('photo')) {
//        $path = Storage::disk('local')->put($request->file('photo')->getClientOriginalName(),$request->file('photo')->get());
            $path = $request->file('photo')->store('/images/1/smalls');
            $product->image_url = $path;
        }
like image 23
Dhana Avatar answered Sep 28 '22 05:09

Dhana


Here is another way to save images using intervention package on storage path with desired name. (using Storage::putFileAs method )

public function store(Request $request)
{
    if ($request->hasFile('photo')) {

        $image      = $request->file('photo');
        $image_name = time() . '.' . $image->extension();

        $image = Image::make($request->file('photo'))
            ->resize(120, 120, function ($constraint) {
                $constraint->aspectRatio();
             });

        //here you can define any directory name whatever you want, if dir is not exist it will created automatically.
        Storage::putFileAs('public/images/1/smalls/' . $image_name, (string)$image->encode('png', 95), $image_name);
    }
}

like image 42
dipenparmar12 Avatar answered Sep 28 '22 05:09

dipenparmar12


Simple Code.

if($request->hasFile('image')){
    $object->image = $request->image->store('your_path/image');
}

Thanks.

like image 45
Raja Avatar answered Sep 28 '22 07:09

Raja