請問取出最新的資料的語法?

原本取出分類的影片是舊的在最上面, 請問如何讓新的在最上面呢?
How to do to get the last insert of below code?
$v_videos = VCategory::find($id)->videos->toArray();

Can anyone help? Thanks.
已邀请:

kelson

赞同来自: FiveSay supermico

尝试如下修改你的代码,我没有具体测试,应该不会出问题,如果有异常请跟帖回复。
$v_videos = VCategory::find($id)->videos->orderBy('created_at','desc')->toArray();

码农

赞同来自: supermico

$v_videos = VCategory::find($id)->videos->reverse()->toArray();

要回复问题请先登录注册