**已关闭。**此问题需要debugging details。目前不接受回答。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答问题。
6天前关闭
Improve this question
@php
$replies = App\Models\ForumReplies::where("forum_id",$post_id)->where("reply_id",0)->latest()->get();
@endphp
Posted at {{$reply->created_at->diffForHumans()}}
为什么这个日期函数返回时间戳响应。
请帮我解决这个问题……
1条答案
按热度按时间ct3nt3jp1#
您可以使用多种方法来获取格式化的日期。
标准方法:
第一个月
本地化方法:
Posted at {{ $reply->created_at->isoFormat('MMM Do YY') }}
个