Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Laravel 中有一个应用程序,它正在使用即将发布的系列和电影的日历。
我需要展示即将发布的版本,已经在注册,但他们可以帮助我根据最早的日期进行展示吗?
谢谢!
你能告诉我们你目前拥有什么吗?你提供的信息还不够。您目前是否正在为日历使用一些插件?你的数据库架构是什么?你到底想达到什么目的?
如果即将发布的版本是 Eloquent 模型,那么您可以执行以下操作:
UpcomingReleases::orderBy('date', 'DESC')->get();
请记住,“UpcomingReleases”是我刚想出的一个名字,直到我确定你使用的是什么型号