首页 > 解决方案 > Displaying time in minutes/hours/days using Carbon or any other tools

问题描述

I want to convert date to make it like, if i posted comment 2 minutes ago it will show 2 minutes ago, if 2 hours ago, like that, week ago, and so on

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

enter image description here

标签: laravelphp-carbon

解决方案


您需要使用 diffForHumans()

$comment->created_at->diffForHumans();

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


推荐阅读