我正在使用app\provider在主页和管理面板中显示数据从数据库中获取数据。我想按降序排列数据。应用程序\提供程序中的代码
View::composer('*',function($view){ $view->with('services', Service::all()); });
ykejflvf1#
如果要在laravel 5.6中按降序和降序对数据进行排序,只需编写如下简单代码:
View::composer('*',function($view){ $view->with('services', Service::latest()->get()); });
最新函数等于 orderBy('created_at', 'DESC'); 获取函数帮助,从数据库中获取所有数据。此代码也使用 ('services', Service::latest()->get()) 在控制器中按降序获取数据。谢谢,如果你有任何问题可以随时问我。
orderBy('created_at', 'DESC');
('services', Service::latest()->get())
1条答案
按热度按时间ykejflvf1#
如果要在laravel 5.6中按降序和降序对数据进行排序,只需编写如下简单代码:
最新函数等于
orderBy('created_at', 'DESC');
获取函数帮助,从数据库中获取所有数据。此代码也使用('services', Service::latest()->get())
在控制器中按降序获取数据。谢谢,如果你有任何问题可以随时问我。