4.3. 显示个人资料
内容嵌套
上一节更新了个人简介,接下来我们将在个人中心里显示出来:
resources/views/users/show.blade.php
.
.
.
<div class="card-body">
<h5><strong>个人简介</strong></h5>
<p>{{ $user->introduction }}</p>
<hr>
<h5><strong>注册于</strong></h5>
<p>{{ $user->created_at->diffForHumans() }}</p>
</div>
.
.
.
源码解读:
$user->introduction
是调用上面我们新添加的字段;$user->created_at->diffForHumans()
时间戳友好的输出。
刷新页面看效果:
1. 个人简介为空
个人简介居然为空,我们明明在最后一次测试中填入内容了,并且也显示成功更新。让我们用数据库工具瞧一瞧是否有内容: