最佳答案
我有表的狗在我的数据库,我想恢复 N latest added dogs
。
我找到的唯一方法是这样的:
Dogs:all()->where(time, <=, another_time);
还有其他的方法吗? 例如像这样的 Dogs:latest(5);
非常感谢您的帮助:)