我正在使用
php artisan storage:将图像存储到数据库的链接。正如所料,图像存储在数据库中。但是我在检索图像并在视图上显示它们时遇到了问题。我尝试了不同类型的方法但没有工作。这是我获取记录的代码。
public function show($id)
{
$Attendees=Attendee::where('event_id',$id)->OrderBy('first_name','ASC')->get();
return view('Attendee',['Attendees'=>$Attendees,'id'=>$id]);
}

<div class="col-sm-10" style="margin:0px 0px 0px 225px">
<a href="{{url('attendeeAdd',[$id])}}" style="float:right">Add Attendee</a>
@foreach($Attendees as $deligate)
<img src="{{ asset('images/$deligate->id') }}">
<h4><span>{{$deligate->first_name}}</span> <span>{{$deligate->last_name}}</span></h4>
@endforeach
</div>
&#13;
答案 0 :(得分:0)
如果您确定您的图像存储在数据库中。所以你必须检索BLOB数据。
data
答案 1 :(得分:0)
花了很多时间后,我得到了答案。
<img src="{{ URL::asset('storage/images'.$deligate->profile_image) }}">
&#13;