繁体   English   中英

用于图像的Laravel表单模型绑定不起作用

[英]Laravel Form model binding for image not working

在我的编辑表单模型绑定中,我想显示车辆图像,我的视图刀片中包含以下代码:

{!! Form::model($cedit, ['method' => 'PATCH','route' => ['category.update', $cedit->id], 'files' => true]) !!}
    <div class="form-group">
       <img src="images/{{ $cedit->name }}"/>
    </div>

    <button type="submit" class="btn btn-primary">Submit</button>
    </div>
{{ Form::close() }}

我该如何实现?

为了访问资源,您应该使用asset()帮助器来获取公共目录的完整路径,如下所示:

<div class="form-group">
    <img src="{{asset('/images/'.$cedit->name)}}">
</div>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM