我正在使用{{ date('jS M, Y', strtotime($row->created_date)) }}
和结果像2017年9月4日格式我想显示创建日期为6分钟前/ 1天前/ 1周前格式。我能怎么做?
答案 0 :(得分:4)
如果created_date
是Carbon\Carbon
的实例,您可以执行以下操作:
$row->created_date->diffForHumans()
如果它不是Carbon的一个实例,你可以这样做:
(new Carbon\Carbon($row->created_date))->diffForHumans()
我不知道created_date
的格式是什么,因此您可能希望阅读Carbon文档,为您的格式http://carbon.nesbot.com/docs/#api-instantiation
答案 1 :(得分:0)
要将未命名为created_at或updated_at的字段转换为碳,您需要先register it on the model,然后才能使用Set