0
は、だから私はこのようなものがあります:私はこのような何かをするだろう、単一の行については返す前にデータベースクエリに属性を追加するにはどうすればよいですか?
$comments = Comments::select('id', 'topic', 'parent_id', 'username', 'comment', 'upvotes', 'created_at', 'updated_at')
->where('topic', '=', $topic)
->get();
// I'd like to add a human readable datetime difference like
// 1 day ago, 2 days ago, etc. before I return the $comments variable here.
return json_encode($comments);
:
$comment->created_at->diffForHumans();
をどのように私は、すべての行にcarbon_dateのようなものを余分に属性を追加することができますか?
これは日付を提供しますが、追加の属性で$ comments変数をどのように更新するのですか? – rotaercz
オブジェクトを適所に修正しますか?あなたはそれが1つの行のためにそれを行う方法だと言った。 – Barmar
そうでない場合は、プロパティに割り当てます。 – Barmar