0

大家好,这是我的表格

if (Input::file()) {

    $image = Input::file('dataimage');

    $filename = $image->getClientOriginalName();

    $path = public_path('resimler/' . $filename);

    Image::make($image->getRealPath())->resize(250, 172.5)->save($path);

    $userprofile->image = $path;
    $userprofile->save();

}

但我遇到了一个错误。

我感谢你的帮助。我正在尝试上传图片。

4

0 回答 0