我想向新注册的用户添加默认的个人资料图片。因此,我在下面添加此代码:
<a href="#change_photo" data-toggle="modal">
@if (file_exists(public_path().'/images/'.$user->photo))
<img src="{{ asset('images/'.$user->photo) }}" class="img-circle" alt="Add picture">
@else
<img src="{{ asset('images/profile_picture.jpg') }}" class="img-circle" alt="Add picture">
@endif
效果很好,但是所有用户自定义的个人资料图片现在都显示默认图片。
Laravel 5.2.45版和PHP 7.2版。谢谢