使用Carbon或任何其他工具以分钟/小时/天显示时间

问题描述 投票:0回答:2

我想转换日期使它像,如果我发布评论2分钟前它将显示2分钟前,如果2小时前,像那样,一周前,等等

        <div class="col-md-2">
            <p class="text-secondary text-center">{{ $comment->created_at }}</p>
        </div>

enter image description here

laravel php-carbon
2个回答
3
投票

你需要使用diffForHumans()

$comment->created_at->diffForHumans();

https://carbon.nesbot.com/docs/#api-humandiff


1
投票

你正在寻找diffForHumans(),这是一个相对于现在返回日期的Carbon方法。在Model实例上,就像你的Comment类一样,属性created_at应该已经转换为Carbon实例,所以你可以简单地调用:

{{ $comment->created_at->diffForHumans() }}

这应该返回类似于1 hour ago5 months ago等的东西。有关详细信息,请参阅https://carbon.nesbot.com/docs/#api-humandiff

© www.soinside.com 2019 - 2024. All rights reserved.