如何在表中保存多个图像路径

时间:2015-02-27 10:39:43

标签: php laravel-4

嗨,请帮助我是laravel的新手我希望在中存储多个图像路径 table ...使用此代码无法保存。 帮帮我...

在我的视图中

  {{Form::open(array('url'=>'businessdirectory/business', 'files'=>true))}}
   {{Form::label('image','Upload Image')}}

   <div class="form-group">{{Form::file('image[]',array('multiple'=>true))}} 

    </div>
    {{Form::close()}}

在我的控制器中

   if(Input::file('image'))
     {
     $image = Input::file('image');

     foreach($image as $img) {
     $destination = 'images';
     $filename = $img->getClientOriginalName();
     $path = 'images/'.$filename;
     $uploadSuccess = $img->move($destination,$filename);
     }
     } 
     else
    {
          $path='images/default.JPG';
    }
     $business = new Business();    
     $business->image = $path;

    $business->save();

0 个答案:

没有答案