我想将图像存储在现有表的列中。然后我想在我的网页中显示它。我该怎么做?任何人都可以帮助我。我可以存储图像路径,但无法将图像移动到该文件夹。所以我不明白如何在网页中显示此图像。
提前致谢
答案 0 :(得分:1)
为了更好地理解,您可以点击以下链接:storing image in a existing table column and display it using laravel 4
或遵循以下规则
使用下面的表格
{{ Form::file('image', ['class' => 'form-group']) }}
对于存储,请使用以下方法:
$name = Input::file('image')->getClientOriginalName();
Input::file('image')->move('public/images',$name);
$destinationPath = '/images/'.$name;
并在网页中显示它在刀片模板中执行以下操作
{{ HTML::image($post->image) }}