gpt4 book ai didi

php - Laravel 4 : how to "order by" using Eloquent ORM

转载 作者:IT老高 更新时间:2023-10-28 11:42:31 24 4
gpt4 key购买 nike

简单的问题 - 我如何在 Laravel 4 中按 'id' 降序排序。

我的 Controller 的相关部分如下所示:

$posts = $this->post->all()

据我了解,您使用此行:

->orderBy('id', 'DESC');

但这与我上面的代码有什么关系呢?

最佳答案

如果你使用 post 作为模型(没有依赖注入(inject)),你也可以这样做:

$posts = Post::orderBy('id', 'DESC')->get();

关于php - Laravel 4 : how to "order by" using Eloquent ORM,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17553181/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com