gpt4 book ai didi

laravel - 使用 Laravel Eloquent 获取所有最新记录

转载 作者:行者123 更新时间:2023-12-02 20:07:42 25 4
gpt4 key购买 nike

我尝试以这种方式查询数据库,但它返回错误。

latest() not found.

DailyReport::get()->latest()->paginate(10)

我希望它返回所有带分页的每日报告。

最佳答案

latest() 方法是 orderBy('created_at', 'desc') 的缩写。您可以通过以下方式实现您想要的:

$latest_daily_reports = DailyReport::latest()->paginate(10);

您还可以更改latest() 列的排序依据。

->latest('your_column_name');

关于laravel - 使用 Laravel Eloquent 获取所有最新记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54266679/

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