我想将日期转换为喜欢的日期,如果我在2分钟前发布评论,它将在2分钟前显示,如果是2小时前,例如一周前,依此类推
<div class="col-md-2">
<p class="text-secondary text-center">{{ $comment->created_at }}</p>
</div>
答案 0 :(得分:3)
您需要使用diffForHumans()
$comment->created_at->diffForHumans();
答案 1 :(得分:1)
您正在寻找diffForHumans()
,这是一种Carbon
方法,用于返回相对于现在的日期。在Model
实例上,例如您的Comment
类,属性created_at
应该已经转换为Carbon
实例,因此您可以简单地调用:
{{ $comment->created_at->diffForHumans() }}
这应该返回类似于1 hour ago
,5 months ago
等的信息。有关详细信息,请参见https://carbon.nesbot.com/docs/#api-humandiff。