Image source not readable in Laravel 5.2 - Intervention Image

前端 未结 6 1618
孤独总比滥情好
孤独总比滥情好 2021-02-07 18:27

I have a small problem concerning the resizing process of a given image, I am trying to submit a form containing an input type -->file<-- I was able to upload a picture witho

6条回答
  •  遥遥无期
    2021-02-07 18:35

    i just solved this problem.

    change this line:

    $file -> move('uploads', $fileName);
    

    to

    $file = $file -> move('uploads', $fileName);
    

    now $file->getRealPath() has a valid value.

    hope this works for you.

提交回复
热议问题