我创建了一个上传某些产品图片的功能。当我遍历我的所有产品时,我也希望显示图像。
问题是,图片正在上传,但是当我使用@foreach
进行迭代时,我无法呈现图片。我尝试在控制器中获取路径,但它没有工作。
到目前为止,我已经这样做了:
在config / filesystems.php中,我创建了一个自定义存储
'products' => [
'driver' => 'local',
'root' => public_path('/pictures/uploads/products'),
],
当我创建新产品时:
<h1>Create new product</h1>
{!! Form::open(['route' => 'vendor.allproducts', 'files'=>true]) !!}
<div class="form-group">
{!! Form::label('Title', 'Title:') !!}
{!! Form::text('title',null,['class'=>'form-control']) !!}
</div>
<div class="form-group">
{!! Form::label('File', 'File:') !!}
{!! Form::file('image') !!}
</div>
当我遍历我的产品信息时:
@foreach ($products as $product)
<tr>
.
.
<td><img src="{{ $product->imagePath }}"></td>
</tr>
@endforeach
在控制器中:
public function store(){
$product = Request::all();
$file = Request::file('image');
$extension = $file->getClientOriginalExtension();
Storage::disk('products')->put($file->getFilename().'.'.$extension, File::get($file));
//$product->imagePath = Input::file('image')->getRealPath();
Auth::user()->products()->create($product);
return redirect()->route('allproducts');
}
答案 0 :(得分:1)
您的商店方法将
if(input::hasfile("image")){
$files = Input::file('image');
$name = time()."_". $files->getClientOriginalName();
$image = $files->move(public_path().'/image' , $name);
$imagefile->image=$name;
}
$imagefile->save();
你的观点应该是
<td><img src="{{URL::to('/image/' . $product->image)}}"></td>