gpt4 book ai didi

php - 管理员身份验证的 img 未加载到 Laravel 8 中

转载 作者:行者123 更新时间:2023-12-04 07:15:32 25 4
gpt4 key购买 nike

我正在尝试显示管理员用户的图像,但没有显示任何内容。
.并命名正确显示的用户的电子邮件

@php
$adminData = Auth::user();
@endphp


< div class="widget-user-header bg-black" >
<h3 class="widget-user-username">Admin Name : {{ $adminData->name }}</h3>
<a href="{{route('admin.profile.edit')}}" style="float: right;" class="btn btn-rounded btn-success mb-5"> Edit Prfile</a>
<h6 class="widget-user-desc">Email : {{ $adminData->email }}</h6>
</div>
<div class="widget-user-image">
<img class="rounded-circle" src="{{(!empty(asset($adminData->profile_photo_path) ))? url('upload/admin_images/'.$adminData->profile_photo_path):url('upload/no_image.jpg')}}">
</div>

最佳答案

你必须像下面这样使用

@if($adminData->profile_photo_path)
<img class="rounded-circle" src="{{url('/'.$adminData->profile_photo_path)}}">
@else
<img class="rounded-circle" src="{{url('/no_image.jpg')}}">
@endif

关于php - 管理员身份验证的 img 未加载到 Laravel 8 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68795923/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com