是否可以从数据库中检索图像并将其显示在表单的上传字段中?
例如:
我可以从数据库中检索一个名称并将其显示在表单上,如下所示:
{{ Form::text('Location', $variable->name, array('class' => 'form-control', 'required' => '', 'placeholder'=>'Location', 'readonly' => 'readonly')) }}
我可以对图片做同样的事情吗?我试过这个:
{{ Form::file('Photo', $variable->photo, array('class' => 'form-control', 'required' => '')) }}
但我收到错误:非法字符串偏移'名称'。有什么想法吗?