美文网首页
laravel实现图片上传

laravel实现图片上传

作者: MakingChoice | 来源:发表于2017-01-03 15:53 被阅读127次

分享一个简单的上传图片的方法

public function addPhoto($zip,$street,Request $request){
          $this->validate($request,[
                    'photo'=>'required|mimes:jpg,jpeg,png,bmp'
          ]);
          $file=$request->file('photo');
          $name=time().$file->getClientOriginalName();
          $file->move('download/image',$name)
          $flyer=Flyer::located($zip,$street)->first();
          $flyer->photo()->create(['path'=>'download/image/{$name}'])
}

相关文章

网友评论

      本文标题:laravel实现图片上传

      本文链接:https://www.haomeiwen.com/subject/brngvttx.html