是否可以使用查询构建器选择时间戳列作为Carbon日期对象? {@ 1}}在下面的代码段中:
DateCreated
更新1 :
我通过迭代结果集并手动更改 DateChanged 属性手动解决了这个问题,但我对此解决方案不满意。感觉不够优雅。
$entities = DB::table('translation_review as tr')
...
->select('tr.AuthorID', 't.LanguageID', 't.DateCreated' /* <--- this one! */)
->get();
答案 0 :(得分:1)
如果您不使用Eloquent,则应手动创建Carbon对象:
$carbonDate = Carbon::parse($data['DateCreated'])